Started GET "/people/1/edit" for 10.0.2.2 at 2014-09-07 15:29:27 +0000 ActiveRecord::PendingMigrationError - Migrations are pending. To resolve this issue, run: bin/rake db:migrate RAILS_ENV=development : activerecord (4.1.5) lib/active_record/migration.rb:389:in `check_pending!' activerecord (4.1.5) lib/active_record/migration.rb:377:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/88542790/variables" for 10.0.2.2 at 2014-09-07 15:29:28 +0000  (11.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (0.1ms) select sqlite_version(*)  (5.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePeople (20140906224643)  (0.1ms) begin transaction  (1.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "bio" text, "birthday" date, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140906224643"]]  (3.8ms) commit transaction Migrating to DeviseCreateUsers (20140906224816)  (0.1ms) begin transaction  (2.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 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)  (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index'  (0.2ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140906224816"]]  (4.1ms) commit transaction Migrating to CreateCkeditorAssets (20140907031459)  (0.1ms) begin transaction  (2.1ms) CREATE TABLE "ckeditor_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "data_file_name" varchar(255) NOT NULL, "data_content_type" varchar(255), "data_file_size" integer, "assetable_id" integer, "assetable_type" varchar(30), "type" varchar(30), "width" integer, "height" integer, "created_at" datetime, "updated_at" datetime)   (0.2ms) CREATE INDEX "idx_ckeditor_assetable_type" ON "ckeditor_assets" ("assetable_type", "type", "assetable_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (0.1ms) CREATE INDEX "idx_ckeditor_assetable" ON "ckeditor_assets" ("assetable_type", "assetable_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907031459"]]  (11.5ms) commit transaction Migrating to CreatePhotos (20140907131441)  (0.1ms) begin transaction  (3.9ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_file_name" varchar(255), "image_content_type" varchar(255), "image_file_size" integer, "image_updated_at" datetime, "title" varchar(255), "person_id" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_photos_on_person_id" ON "photos" ("person_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907131441"]]  (4.3ms) commit transaction ActiveRecord::SchemaMigration Load (1.8ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'   (1.5ms) SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_photos_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_photos_on_person_id' AND type='index'   (1.8ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index'  Started GET "/people/1/edit" for 10.0.2.2 at 2014-09-07 15:43:42 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/users/sign_in" for 10.0.2.2 at 2014-09-07 15:43:42 +0000 Processing by Devise::SessionsController#new as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.2.4/app/views/devise/shared/_links.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.2.4/app/views/devise/sessions/new.html.erb within layouts/application (21.8ms) Completed 200 OK in 655ms (Views: 639.6ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-09-07 15:43:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:43:43 +0000 Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-09-07 15:43:43 +0000 Started GET "/assets/turbolinks.js?body=1" for 10.0.2.2 at 2014-09-07 15:43:43 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:43:43 +0000 Started POST "/users/sign_in" for 10.0.2.2 at 2014-09-07 15:43:54 +0000 Processing by Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"NhbpGmVieeIypTsqAkw/s62eFXbeCH8bufw6EJlVPow=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"} User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' ORDER BY "users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 9ms Processing by Devise::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"NhbpGmVieeIypTsqAkw/s62eFXbeCH8bufw6EJlVPow=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"} Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.2.4/app/views/devise/shared/_links.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.2.4/app/views/devise/sessions/new.html.erb within layouts/application (4.3ms) Completed 200 OK in 122ms (Views: 44.5ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:43:55 +0000 Started GET "/assets/turbolinks.js?body=1" for 10.0.2.2 at 2014-09-07 15:43:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:43:55 +0000 Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-09-07 15:43:55 +0000 Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-09-07 15:43:55 +0000  (0.2ms) begin transaction User Exists (1.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-09-07 15:44:11.475422"], ["email", "admin@vizir.com.br"], ["encrypted_password", "$2a$10$OOPP.B.WrajE8BzGVjpP2.YuJicK0aQBEOKxUbIDb9wzgtM4B2.wK"], ["updated_at", "2014-09-07 15:44:11.475422"]]  (9.0ms) commit transaction Started POST "/users/sign_in" for 10.0.2.2 at 2014-09-07 15:44:13 +0000 Processing by Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"NhbpGmVieeIypTsqAkw/s62eFXbeCH8bufw6EJlVPow=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"} User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) begin transaction Binary data inserted for `string` type on column `current_sign_in_ip` Binary data inserted for `string` type on column `last_sign_in_ip` SQL (2.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-09-07 15:44:14.005855"], ["current_sign_in_ip", "10.0.2.2"], ["last_sign_in_at", "2014-09-07 15:44:14.005855"], ["last_sign_in_ip", "10.0.2.2"], ["sign_in_count", 1], ["updated_at", "2014-09-07 15:44:14.007424"]]  (4.0ms) commit transaction Redirected to http://127.0.0.1:3021/people/1/edit Completed 302 Found in 102ms (ActiveRecord: 8.7ms) Started GET "/people/1/edit" for 10.0.2.2 at 2014-09-07 15:44:14 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (1.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Completed 404 Not Found in 19ms ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=1: activerecord (4.1.5) lib/active_record/relation/finder_methods.rb:320:in `raise_record_not_found_exception!' activerecord (4.1.5) lib/active_record/relation/finder_methods.rb:420:in `find_one' activerecord (4.1.5) lib/active_record/relation/finder_methods.rb:404:in `find_with_ids' activerecord (4.1.5) lib/active_record/relation/finder_methods.rb:68:in `find' activerecord (4.1.5) 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:81:in `edit' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-617304878/variables" for 10.0.2.2 at 2014-09-07 15:44:14 +0000 Started GET "/people/" for 10.0.2.2 at 2014-09-07 15:44:19 +0000 User Load (2.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#index as HTML 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (91.4ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) 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 (141.3ms) Rendered carnival/_extra_header.html.haml (2.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.3ms) Completed 200 OK in 1842ms (Views: 1815.7ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:21 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:44: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-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 Started GET "/people.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1410104661961" for 10.0.2.2 at 2014-09-07 15:44:22 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1410104661961"}  (1.5ms) SELECT COUNT(*) FROM "people" Person Load (5.0ms) SELECT "people".* FROM "people" ORDER BY people.id asc LIMIT 50 OFFSET 0 CACHE (0.0ms) SELECT COUNT(*) FROM "people" Completed 200 OK in 19ms (Views: 11.5ms | ActiveRecord: 6.6ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-09-07 15:44:23 +0000 Started GET "/people/" for 10.0.2.2 at 2014-09-07 15:45:39 +0000 User Load (378.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#index as HTML Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (27.2ms) 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 (92.7ms) Rendered carnival/_extra_header.html.haml (0.7ms) 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 441ms (Views: 440.5ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:45: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-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 15:45:41 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 15:46:25 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-07 15:46:25 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 15:46:25 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 15:46:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 15:46:25 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-07 15:46:25 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-09-07 15:46:25 +0000 Started GET "/people.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1410104741435" for 10.0.2.2 at 2014-09-07 15:46:26 +0000 User Load (2.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1410104741435"}  (35.8ms) SELECT COUNT(*) FROM "people" Person Load (1.9ms) SELECT "people".* FROM "people" ORDER BY people.id asc LIMIT 50 OFFSET 0 CACHE (0.0ms) SELECT COUNT(*) FROM "people" Completed 200 OK in 51ms (Views: 11.2ms | ActiveRecord: 37.7ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-09-07 15:46:26 +0000 Started GET "/" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 User Load (3.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered /project/app/views/carnival/base_admin/home.html.haml within layouts/carnival/admin (0.8ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 269ms (Views: 268.2ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15: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-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:47: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-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 15:47:10 +0000 Started GET "/" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered /project/app/views/carnival/base_admin/home.html.haml within layouts/carnival/admin (0.2ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (51.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 265ms (Views: 264.7ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15: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-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:47: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-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:47:36 +0000 Started GET "/" for 10.0.2.2 at 2014-09-07 15:48:51 +0000 User Load (276.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (0.9ms) Rendered carnival/_extra_header.html.haml (0.8ms) 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 300ms (Views: 299.1ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:48: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-09-07 15:48:53 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 15:48:53 +0000 Started GET "/" for 10.0.2.2 at 2014-09-07 15:49:17 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (1.1ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 228ms (Views: 227.6ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49: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-09-07 15:49:18 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:18 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 15:49:19 +0000 Started GET "/people/" for 10.0.2.2 at 2014-09-07 15:49:37 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#index as HTML Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (22.0ms) 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 (90.2ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 357ms (Views: 355.9ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15: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-09-07 15:49:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15: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-09-07 15:49:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/people.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1410104978809" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 User Load (4.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1410104978809"}  (3.4ms) SELECT COUNT(*) FROM "people" Person Load (3.6ms) SELECT "people".* FROM "people" ORDER BY people.id asc LIMIT 50 OFFSET 0 CACHE (0.3ms) SELECT COUNT(*) FROM "people" Completed 200 OK in 21ms (Views: 11.8ms | ActiveRecord: 7.3ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-09-07 15:49:39 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 15:49:48 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (31.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (126.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (163.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (174.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (179.4ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 440ms (Views: 437.0ms | ActiveRecord: 1.8ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:49: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-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 15:49:49 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 15:49:50 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 15:49:50 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 15:49:50 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 15:49:50 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 15:49:50 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 15:49:54 +0000 Started GET "/" for 10.0.2.2 at 2014-09-07 15:50:43 +0000 User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (1.4ms) Rendered carnival/_extra_header.html.haml (0.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 287ms (Views: 285.9ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:43 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:43 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:43 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:43 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:50: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-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 15:50:44 +0000 Started GET "/" for 10.0.2.2 at 2014-09-07 15:54:46 +0000 User Load (77.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (1.2ms) Rendered carnival/_extra_header.html.haml (0.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 300ms (Views: 299.8ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:54: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-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:54:47 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 15:54:54 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 15:54:54 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 15:54:54 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 15:54:54 +0000 Started GET "/" for 10.0.2.2 at 2014-09-07 15:57:20 +0000 User Load (141.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (1.9ms) Rendered carnival/_extra_header.html.haml (0.8ms) 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 285ms (Views: 285.1ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 15:57: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-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 15:57:21 +0000 Started GET "/" for 10.0.2.2 at 2014-09-07 16:00:10 +0000 User Load (219.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (2.0ms) Rendered carnival/_extra_header.html.haml (1.2ms) 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 285ms (Views: 284.2ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:00: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-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 16:00:12 +0000 Started GET "/" for 10.0.2.2 at 2014-09-07 16:03:18 +0000 User Load (79.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (1.9ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (54.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 303ms (Views: 302.9ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 16: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-09-07 16:03:19 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:19 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 16:03:20 +0000 ActiveRecord::SchemaMigration Load (2.0ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateCountries (20140907161617)  (0.1ms) begin transaction  (2.0ms) CREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161617"]]  (9.4ms) commit transaction Migrating to CreateStates (20140907161629)  (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) select sqlite_version(*)  (0.1ms) CREATE INDEX "index_states_on_country_id" ON "states" ("country_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161629"]]  (7.0ms) commit transaction Migrating to CreateCities (20140907161640)  (0.1ms) begin transaction  (2.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "state_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_cities_on_state_id" ON "cities" ("state_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161640"]]  (15.0ms) commit transaction Migrating to CreateAddressTypes (20140907161809)  (0.1ms) begin transaction  (2.1ms) CREATE TABLE "address_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161809"]]  (6.8ms) commit transaction Migrating to CreatePhoneTypes (20140907161816)  (0.1ms) begin transaction  (1.8ms) CREATE TABLE "phone_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161816"]]  (8.1ms) commit transaction Migrating to CreatePhones (20140907161904)  (0.1ms) begin transaction  (2.1ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "phone_type_id" integer, "phoneable_id" integer, "phoneable_type" varchar(255), "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_phones_on_phone_type_id" ON "phones" ("phone_type_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161904"]]  (9.8ms) commit transaction Migrating to CreateAddresses (20140907162406)  (0.1ms) begin transaction  (2.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address" varchar(255), "number" varchar(255), "complement" varchar(255), "zipcode" varchar(255), "city_id" integer, "state_id" integer, "country_id" integer, "address_type_id" integer, "person_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_addresses_on_city_id" ON "addresses" ("city_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (0.1ms) CREATE INDEX "index_addresses_on_state_id" ON "addresses" ("state_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'  (0.1ms) CREATE INDEX "index_addresses_on_country_id" ON "addresses" ("country_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'  (0.1ms) CREATE INDEX "index_addresses_on_address_type_id" ON "addresses" ("address_type_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907162406"]]  (7.5ms) commit transaction ActiveRecord::SchemaMigration Load (3.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (3.6ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_person_id' AND type='index'  (3.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'   (1.7ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'  (2.6ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'   (2.3ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'  (3.0ms)  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'   (2.8ms) SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'  (3.1ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (1.6ms) SELECT sql FROM sqlite_master WHERE name='index_phones_on_phone_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_phones_on_phone_type_id' AND type='index'  (3.9ms)  SELECT sql FROM sqlite_master WHERE name='index_photos_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_photos_on_person_id' AND type='index'   (3.0ms) 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'  (1.7ms)  SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index'   (1.4ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index' Started GET "/address" for 10.0.2.2 at 2014-09-07 16:39:26 +0000 ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (No route matches [GET] "/address"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.0ms) Started GET "/addresses" for 10.0.2.2 at 2014-09-07 16:39:31 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 ActionController::RoutingError - uninitialized constant AddressesController: actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:71:in `rescue in controller' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:66:in `controller' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/93594780/variables" for 10.0.2.2 at 2014-09-07 16:39:31 +0000 Started GET "/addresses" for 10.0.2.2 at 2014-09-07 16:42:13 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by AddressesController#index as HTML Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (60.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (142.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (161.9ms) Completed 500 Internal Server Error in 213ms NoMethodError - undefined method `list_for_select' for #: activerecord (4.1.5) lib/active_record/dynamic_matchers.rb:26:in `method_missing' () project/app/views/carnival/shared/_advanced_search_field.html.haml:3:in `__project_app_views_carnival_shared__advanced_search_field_html_haml__683972943_100562360' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/_advanced_search.html.haml:21:in `block in __project_app_views_carnival_shared__advanced_search_html_haml__508788822__621659158' () project/app/views/carnival/shared/_advanced_search.html.haml:15:in `__project_app_views_carnival_shared__advanced_search_html_haml__508788822__621659158' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:37:in `__project_app_views_carnival_base_admin_index_html_haml___187793177_104066110' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:40:in `render' () project/app/controllers/carnival/base_admin_controller.rb:42:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:40:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/93545070/variables" for 10.0.2.2 at 2014-09-07 16:42:14 +0000 Person Load (3.7ms) SELECT "people".* FROM "people" Started GET "/addresses" for 10.0.2.2 at 2014-09-07 16:42:47 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by AddressesController#index as HTML Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (26.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (35.1ms) Completed 500 Internal Server Error in 56ms NoMethodError - undefined method `list_for_select' for #: activerecord (4.1.5) lib/active_record/dynamic_matchers.rb:26:in `method_missing' () project/app/views/carnival/shared/_advanced_search_field.html.haml:3:in `__project_app_views_carnival_shared__advanced_search_field_html_haml__683972943_100562360' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/_advanced_search.html.haml:21:in `block in __project_app_views_carnival_shared__advanced_search_html_haml__508788822__621659158' () project/app/views/carnival/shared/_advanced_search.html.haml:15:in `__project_app_views_carnival_shared__advanced_search_html_haml__508788822__621659158' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:37:in `__project_app_views_carnival_base_admin_index_html_haml___187793177_104066110' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:40:in `render' () project/app/controllers/carnival/base_admin_controller.rb:42:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:40:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-621797318/variables" for 10.0.2.2 at 2014-09-07 16:42:48 +0000 Person Load (11.1ms) SELECT "people".* FROM "people" Started POST "/__better_errors/-621797318/variables" for 10.0.2.2 at 2014-09-07 16:42:55 +0000 Started POST "/__better_errors/-621797318/eval" for 10.0.2.2 at 2014-09-07 16:43:10 +0000 Started GET "/addresses" for 10.0.2.2 at 2014-09-07 16:43:30 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by AddressesController#index as HTML Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Person Load (1.5ms) SELECT "people".* FROM "people" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (14.5ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (51.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (60.5ms) Completed 500 Internal Server Error in 145ms NoMethodError - undefined method `list_for_select' for #: activerecord (4.1.5) lib/active_record/dynamic_matchers.rb:26:in `method_missing' () project/app/views/carnival/shared/_advanced_search_field.html.haml:3:in `__project_app_views_carnival_shared__advanced_search_field_html_haml__683972943_100562360' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/_advanced_search.html.haml:21:in `block in __project_app_views_carnival_shared__advanced_search_html_haml__508788822__621659158' () project/app/views/carnival/shared/_advanced_search.html.haml:15:in `__project_app_views_carnival_shared__advanced_search_html_haml__508788822__621659158' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:37:in `__project_app_views_carnival_base_admin_index_html_haml___187793177_104066110' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:40:in `render' () project/app/controllers/carnival/base_admin_controller.rb:42:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:40:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-621931398/variables" for 10.0.2.2 at 2014-09-07 16:43:30 +0000 State Load (2.2ms) SELECT "states".* FROM "states" Started POST "/__better_errors/-621931398/variables" for 10.0.2.2 at 2014-09-07 16:43:35 +0000 Started POST "/__better_errors/-621931398/eval" for 10.0.2.2 at 2014-09-07 16:43:41 +0000 Started GET "/addresses" for 10.0.2.2 at 2014-09-07 16:44:06 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by AddressesController#index as HTML Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.7ms) Person Load (1.5ms) SELECT "people".* FROM "people" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.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.5ms) State Load (3.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.4ms) City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.3ms) 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (65.6ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (3.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (181.0ms) Rendered carnival/_extra_header.html.haml (2.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (52.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.7ms) Completed 200 OK in 796ms (Views: 769.5ms | ActiveRecord: 9.3ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44: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-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:07 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:08 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 16:44:20 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 16:44:20 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-07 16:44:20 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 16:44:20 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 16:44:20 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-07 16:44:20 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-09-07 16:44:20 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-09-07 16:44:20 +0000 Started GET "/addresses.json?sEcho=1&iColumns=12&sColumns=&iDisplayStart=0&iDisplayLength=50&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&mDataProp_10=10&mDataProp_11=11&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&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&sSearch_10=&bRegex_10=false&bSearchable_10=true&sSearch_11=&bRegex_11=false&bSearchable_11=true&iSortingCols=0&bSortable_0=true&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=true&bSortable_10=true&bSortable_11=false&_=1410108247572" for 10.0.2.2 at 2014-09-07 16:44:20 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by AddressesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"12", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "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", "mDataProp_10"=>"10", "mDataProp_11"=>"11", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "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", "sSearch_10"=>"", "bRegex_10"=>"false", "bSearchable_10"=>"true", "sSearch_11"=>"", "bRegex_11"=>"false", "bSearchable_11"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "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"=>"true", "bSortable_10"=>"true", "bSortable_11"=>"false", "_"=>"1410108247572"}  (1.4ms) SELECT COUNT(*) FROM "addresses" Address Load (1.8ms) SELECT "addresses".* FROM "addresses" ORDER BY addresses.id asc LIMIT 50 OFFSET 0 CACHE (0.0ms) SELECT COUNT(*) FROM "addresses" Completed 200 OK in 14ms (Views: 8.9ms | ActiveRecord: 3.2ms) Started GET "/addresses/new" for 10.0.2.2 at 2014-09-07 16:44:51 +0000 User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by AddressesController#new as HTML Person Load (1.4ms) SELECT "people".* FROM "people" Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Country Load (2.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (64.0ms) State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (128.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (144.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (150.1ms) Rendered carnival/_extra_header.html.haml (0.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 389ms (Views: 381.2ms | ActiveRecord: 6.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 16:44: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-09-07 16:44:53 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 16:44:53 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 16:44:53 +0000  (5.4ms) CREATE TABLE "address_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)   (5.8ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address" varchar(255), "number" varchar(255), "complement" varchar(255), "zipcode" varchar(255), "city_id" integer, "state_id" integer, "country_id" integer, "address_type_id" integer, "person_id" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) select sqlite_version(*)  (6.0ms) CREATE INDEX "index_addresses_on_address_type_id" ON "addresses" ("address_type_id")  (1.6ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'   (5.7ms) CREATE INDEX "index_addresses_on_city_id" ON "addresses" ("city_id")  (1.5ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (1.4ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'  (6.0ms) CREATE INDEX "index_addresses_on_country_id" ON "addresses" ("country_id")  (1.5ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'  (1.4ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (1.3ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'  (5.9ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")  (2.3ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_person_id' AND type='index'  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (1.3ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'   (5.8ms) CREATE INDEX "index_addresses_on_state_id" ON "addresses" ("state_id")  (5.1ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "state_id" integer, "created_at" datetime, "updated_at" datetime)   (11.3ms) CREATE INDEX "index_cities_on_state_id" ON "cities" ("state_id")  (5.6ms) CREATE TABLE "ckeditor_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "data_file_name" varchar(255) NOT NULL, "data_content_type" varchar(255), "data_file_size" integer, "assetable_id" integer, "assetable_type" varchar(30), "type" varchar(30), "width" integer, "height" integer, "created_at" datetime, "updated_at" datetime)   (6.9ms) CREATE INDEX "idx_ckeditor_assetable" ON "ckeditor_assets" ("assetable_type", "assetable_id")  (1.4ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'   (5.8ms) CREATE INDEX "idx_ckeditor_assetable_type" ON "ckeditor_assets" ("assetable_type", "type", "assetable_id")  (6.3ms) CREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime, "updated_at" datetime)   (6.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "bio" text, "birthday" date, "created_at" datetime, "updated_at" datetime)  (4.9ms) CREATE TABLE "phone_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)   (5.5ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "phone_type_id" integer, "phoneable_id" integer, "phoneable_type" varchar(255), "created_at" datetime, "updated_at" datetime)  (6.2ms) CREATE INDEX "index_phones_on_phone_type_id" ON "phones" ("phone_type_id")  (7.0ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_file_name" varchar(255), "image_content_type" varchar(255), "image_file_size" integer, "image_updated_at" datetime, "title" varchar(255), "person_id" integer, "created_at" datetime, "updated_at" datetime)  (5.2ms) CREATE INDEX "index_photos_on_person_id" ON "photos" ("person_id")  (5.8ms) 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)  (5.9ms) CREATE INDEX "index_states_on_country_id" ON "states" ("country_id")  (6.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 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)  (6.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (1.6ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index'  (8.7ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (5.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (6.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (1.5ms) SELECT version FROM "schema_migrations"  (5.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140907162406')  (10.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140906224643')  (5.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140906224816')  (5.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140907031459')  (5.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140907131441')  (5.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140907161617')  (8.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140907161629')  (5.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140907161640')  (5.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140907161809')  (5.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140907161816')  (5.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140907161904') ActiveRecord::SchemaMigration Load (2.8ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction SQL (2.1ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.689872"], ["name", "Current living address"], ["updated_at", "2014-09-07 16:58:33.689872"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (2.4ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.697464"], ["name", "Old living address"], ["updated_at", "2014-09-07 16:58:33.697464"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (2.3ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.705099"], ["name", "Childhood living address"], ["updated_at", "2014-09-07 16:58:33.705099"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (3.0ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.712059"], ["name", "Born address"], ["updated_at", "2014-09-07 16:58:33.712059"]]  (6.2ms) commit transaction  (0.1ms) begin transaction SQL (2.0ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.723066"], ["name", "Parent's address"], ["updated_at", "2014-09-07 16:58:33.723066"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (1.9ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.743288"], ["name", "Mobile"], ["updated_at", "2014-09-07 16:58:33.743288"]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (2.3ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.755498"], ["name", "Home"], ["updated_at", "2014-09-07 16:58:33.755498"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (5.9ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.762766"], ["name", "Office"], ["updated_at", "2014-09-07 16:58:33.762766"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (1.8ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.774338"], ["name", "Fax"], ["updated_at", "2014-09-07 16:58:33.774338"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (4.8ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 16:58:33.781713"], ["name", "Parent's phone"], ["updated_at", "2014-09-07 16:58:33.781713"]]  (3.7ms) commit transaction  (0.1ms) begin transaction User Exists (1.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-09-07 16:58:33.885893"], ["email", "admin@vizir.com.br"], ["encrypted_password", "$2a$10$a.C1iUYgdU4sWed6Z3h83Oi7VQM6bARKB.L1iURF1c4AiJCAODVQK"], ["updated_at", "2014-09-07 16:58:33.885893"]]  (5.0ms) commit transaction  (5.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (0.1ms) select sqlite_version(*)  (6.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (2.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePeople (20140906224643)  (0.1ms) begin transaction  (2.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "bio" text, "birthday" date, "created_at" datetime, "updated_at" datetime) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140906224643"]]  (3.8ms) commit transaction Migrating to DeviseCreateUsers (20140906224816)  (0.1ms) begin transaction  (2.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 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)  (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index'  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140906224816"]]  (4.6ms) commit transaction Migrating to CreateCkeditorAssets (20140907031459)  (0.1ms) begin transaction  (2.3ms) CREATE TABLE "ckeditor_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "data_file_name" varchar(255) NOT NULL, "data_content_type" varchar(255), "data_file_size" integer, "assetable_id" integer, "assetable_type" varchar(30), "type" varchar(30), "width" integer, "height" integer, "created_at" datetime, "updated_at" datetime)   (0.2ms) CREATE INDEX "idx_ckeditor_assetable_type" ON "ckeditor_assets" ("assetable_type", "type", "assetable_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (0.1ms) CREATE INDEX "idx_ckeditor_assetable" ON "ckeditor_assets" ("assetable_type", "assetable_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907031459"]]  (4.8ms) commit transaction Migrating to CreatePhotos (20140907131441)  (0.1ms) begin transaction  (2.1ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_file_name" varchar(255), "image_content_type" varchar(255), "image_file_size" integer, "image_updated_at" datetime, "title" varchar(255), "person_id" integer, "created_at" datetime, "updated_at" datetime)  (0.2ms) CREATE INDEX "index_photos_on_person_id" ON "photos" ("person_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907131441"]]  (9.9ms) commit transaction Migrating to CreateCountries (20140907161617)  (0.2ms) begin transaction  (2.1ms) CREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161617"]]  (4.1ms) commit transaction Migrating to CreateStates (20140907161629)  (0.1ms) begin transaction  (2.1ms) 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.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161629"]]  (3.7ms) commit transaction Migrating to CreateCities (20140907161640)  (0.1ms) begin transaction  (4.1ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "state_id" integer, "country_id" integer, "created_at" datetime, "updated_at" datetime)  (0.2ms) CREATE INDEX "index_cities_on_state_id" ON "cities" ("state_id")  (0.1ms) 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'  (0.1ms) CREATE INDEX "index_cities_on_country_id" ON "cities" ("country_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161640"]]  (4.9ms) commit transaction Migrating to CreateAddressTypes (20140907161809)  (0.1ms) begin transaction  (2.1ms) CREATE TABLE "address_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161809"]]  (4.5ms) commit transaction Migrating to CreatePhoneTypes (20140907161816)  (0.1ms) begin transaction  (2.3ms) CREATE TABLE "phone_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161816"]]  (6.1ms) commit transaction Migrating to CreatePhones (20140907161904)  (0.1ms) begin transaction  (2.3ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "phone_type_id" integer, "phoneable_id" integer, "phoneable_type" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_phones_on_phone_type_id" ON "phones" ("phone_type_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161904"]]  (5.2ms) commit transaction Migrating to CreateAddresses (20140907162406)  (0.1ms) begin transaction  (2.4ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address" varchar(255), "number" varchar(255), "complement" varchar(255), "zipcode" varchar(255), "city_id" integer, "state_id" integer, "country_id" integer, "address_type_id" integer, "person_id" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_addresses_on_city_id" ON "addresses" ("city_id")  (0.5ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'  (0.2ms) CREATE INDEX "index_addresses_on_state_id" ON "addresses" ("state_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (0.1ms) CREATE INDEX "index_addresses_on_country_id" ON "addresses" ("country_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (0.1ms) CREATE INDEX "index_addresses_on_address_type_id" ON "addresses" ("address_type_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907162406"]]  (4.8ms) commit transaction ActiveRecord::SchemaMigration Load (1.6ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_person_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'  (1.4ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (1.4ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (1.5ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (1.4ms) 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.4ms)  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.7ms) SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'  (1.7ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (1.7ms) SELECT sql FROM sqlite_master WHERE name='index_phones_on_phone_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_phones_on_phone_type_id' AND type='index'  (2.7ms)  SELECT sql FROM sqlite_master WHERE name='index_photos_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_photos_on_person_id' AND type='index'   (1.5ms) 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'  (1.5ms)  SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index' ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction SQL (1.9ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.717547"], ["name", "Current living address"], ["updated_at", "2014-09-07 17:00:08.717547"]]  (4.6ms) commit transaction  (0.1ms) begin transaction SQL (2.0ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.726953"], ["name", "Old living address"], ["updated_at", "2014-09-07 17:00:08.726953"]]  (4.8ms) commit transaction  (0.1ms) begin transaction SQL (2.0ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.734902"], ["name", "Childhood living address"], ["updated_at", "2014-09-07 17:00:08.734902"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (2.0ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.741651"], ["name", "Born address"], ["updated_at", "2014-09-07 17:00:08.741651"]]  (4.1ms) commit transaction  (0.0ms) begin transaction SQL (2.0ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.748644"], ["name", "Parent's address"], ["updated_at", "2014-09-07 17:00:08.748644"]]  (4.2ms) commit transaction  (0.1ms) begin transaction SQL (2.6ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.798596"], ["name", "Mobile"], ["updated_at", "2014-09-07 17:00:08.798596"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (2.1ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.806921"], ["name", "Home"], ["updated_at", "2014-09-07 17:00:08.806921"]]  (4.0ms) commit transaction  (0.0ms) begin transaction SQL (1.9ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.813917"], ["name", "Office"], ["updated_at", "2014-09-07 17:00:08.813917"]]  (3.8ms) commit transaction  (0.0ms) begin transaction SQL (2.0ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.820501"], ["name", "Fax"], ["updated_at", "2014-09-07 17:00:08.820501"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (1.5ms) INSERT INTO "phone_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-07 17:00:08.827749"], ["name", "Parent's phone"], ["updated_at", "2014-09-07 17:00:08.827749"]]  (3.8ms) commit transaction  (0.1ms) begin transaction User Exists (1.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-09-07 17:00:08.927305"], ["email", "admin@vizir.com.br"], ["encrypted_password", "$2a$10$cT/tY4RdVyV77D8H/WDd4.a5YZ6LbszUs3Ia3SvAitHiBH6BKTYYe"], ["updated_at", "2014-09-07 17:00:08.927305"]]  (4.5ms) commit transaction Started GET "/countries" for 10.0.2.2 at 2014-09-07 17:00:39 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Started GET "/users/sign_in" for 10.0.2.2 at 2014-09-07 17:00:39 +0000 Processing by Devise::SessionsController#new as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.2.4/app/views/devise/shared/_links.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.2.4/app/views/devise/sessions/new.html.erb within layouts/application (9.5ms) Completed 200 OK in 83ms (Views: 67.8ms | ActiveRecord: 3.3ms) Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:39 +0000 Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:39 +0000 Started GET "/assets/turbolinks.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:39 +0000 Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:39 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:39 +0000 Started POST "/users/sign_in" for 10.0.2.2 at 2014-09-07 17:00:49 +0000 Processing by Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Njr7XrRbHGwZ+KD81+MC15r+MKSIl3kiScsIO0KjGbs=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"} User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) begin transaction Binary data inserted for `string` type on column `current_sign_in_ip` Binary data inserted for `string` type on column `last_sign_in_ip` SQL (2.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-09-07 17:00:50.033160"], ["current_sign_in_ip", "10.0.2.2"], ["last_sign_in_at", "2014-09-07 17:00:50.033160"], ["last_sign_in_ip", "10.0.2.2"], ["sign_in_count", 1], ["updated_at", "2014-09-07 17:00:50.034716"]]  (5.1ms) commit transaction Redirected to http://127.0.0.1:3021/countries Completed 302 Found in 148ms (ActiveRecord: 9.1ms) Started GET "/countries" for 10.0.2.2 at 2014-09-07 17:00:50 +0000 User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (23.3ms) 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 (87.2ms) Rendered carnival/_extra_header.html.haml (0.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 406ms (Views: 387.9ms | ActiveRecord: 1.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:50 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:50 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00: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-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:00:51 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-07 17:00:52 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-09-07 17:00:52 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-09-07 17:00:52 +0000 Started GET "/countries.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&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1410109251035" for 10.0.2.2 at 2014-09-07 17:00:52 +0000 User Load (6.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#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", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1410109251035"}  (17.4ms) SELECT COUNT(*) FROM "countries" Country Load (6.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 CACHE (0.1ms) SELECT COUNT(*) FROM "countries" Completed 200 OK in 45ms (Views: 11.6ms | ActiveRecord: 23.6ms) Started GET "/countries/new" for 10.0.2.2 at 2014-09-07 17:00:54 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (23.6ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (26.8ms) Rendered carnival/_extra_header.html.haml (2.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 301ms (Views: 300.2ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:00: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-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:55 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:56 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:56 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:00:56 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:00:56 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:00:56 +0000 Started POST "/countries" for 10.0.2.2 at 2014-09-07 17:01:02 +0000 User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1AxptCF0D3d6pkm9cwCJXnxw7j9MqzanoQQmErK4dss=", "country"=>{"name"=>"Brazil", "code"=>"BR"}, "commit"=>"Criar"} Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction SQL (3.5ms) INSERT INTO "countries" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "BR"], ["created_at", "2014-09-07 17:01:02.435951"], ["name", "Brazil"], ["updated_at", "2014-09-07 17:01:02.435951"]]  (4.7ms) commit transaction Redirected to http://127.0.0.1:3021/countries Completed 302 Found in 15ms (ActiveRecord: 8.2ms) Started GET "/countries" for 10.0.2.2 at 2014-09-07 17:01:02 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (73.5ms) 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 (92.0ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 313ms (Views: 312.2ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01: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-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:03 +0000 Started GET "/countries.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&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1410109263305" for 10.0.2.2 at 2014-09-07 17:01:04 +0000 User Load (11.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#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", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1410109263305"}  (2.0ms) SELECT COUNT(*) FROM "countries" Country Load (2.8ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Completed 200 OK in 37ms (Views: 31.2ms | ActiveRecord: 4.8ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-07 17:01:04 +0000 Started GET "/countries/new" for 10.0.2.2 at 2014-09-07 17:01:05 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (7.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (11.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (14.0ms) Rendered carnival/_extra_header.html.haml (0.7ms) 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 298ms (Views: 297.3ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01: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-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:06 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:07 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:07 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:01:07 +0000 Started POST "/countries" for 10.0.2.2 at 2014-09-07 17:01:14 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1AxptCF0D3d6pkm9cwCJXnxw7j9MqzanoQQmErK4dss=", "country"=>{"name"=>"United States", "code"=>"US"}, "commit"=>"Criar"} Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction SQL (2.2ms) INSERT INTO "countries" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "US"], ["created_at", "2014-09-07 17:01:14.231565"], ["name", "United States"], ["updated_at", "2014-09-07 17:01:14.231565"]]  (4.0ms) commit transaction Redirected to http://127.0.0.1:3021/countries Completed 302 Found in 13ms (ActiveRecord: 6.3ms) Started GET "/countries" for 10.0.2.2 at 2014-09-07 17:01:14 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML 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.3ms) 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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (74.0ms) 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 (91.8ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (59.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 365ms (Views: 364.4ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:14 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:14 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01: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-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 Started GET "/countries.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&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1410109275104" for 10.0.2.2 at 2014-09-07 17:01:15 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#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", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1410109275104"}  (1.9ms) SELECT COUNT(*) FROM "countries" Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Completed 200 OK in 27ms (Views: 21.0ms | ActiveRecord: 3.2ms) Started GET "/states" for 10.0.2.2 at 2014-09-07 17:01:21 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#index as HTML Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (52.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.3ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (83.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.2ms) 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 (103.8ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (51.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 371ms (Views: 313.4ms | ActiveRecord: 52.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01: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-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:22 +0000 Started GET "/states.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1410109282308" for 10.0.2.2 at 2014-09-07 17:01:23 +0000 User Load (4.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1410109282308"}  (6.0ms) SELECT COUNT(*) FROM "states" State Load (4.5ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 CACHE (0.0ms) SELECT COUNT(*) FROM "states" Completed 200 OK in 29ms (Views: 15.0ms | ActiveRecord: 10.6ms) Started GET "/states/new" for 10.0.2.2 at 2014-09-07 17:01:24 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Country Load (1.4ms) 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 (21.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (27.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (30.7ms) Rendered carnival/_extra_header.html.haml (0.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 316ms (Views: 313.7ms | ActiveRecord: 1.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01: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-09-07 17:01:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:26 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:26 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:26 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:26 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:26 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:01:26 +0000 Started POST "/states" for 10.0.2.2 at 2014-09-07 17:01:36 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1AxptCF0D3d6pkm9cwCJXnxw7j9MqzanoQQmErK4dss=", "state"=>{"name"=>"São Paulo", "code"=>"SP", "country_id"=>"1"}, "commit"=>"Criar"} Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction SQL (2.1ms) INSERT INTO "states" ("code", "country_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["code", "SP"], ["country_id", 1], ["created_at", "2014-09-07 17:01:36.813579"], ["name", "São Paulo"], ["updated_at", "2014-09-07 17:01:36.813579"]]  (5.4ms) commit transaction Redirected to http://127.0.0.1:3021/states Completed 302 Found in 63ms (ActiveRecord: 7.6ms) Started GET "/states" for 10.0.2.2 at 2014-09-07 17:01:36 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#index as HTML 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Country Load (1.6ms) 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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (27.1ms) 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 (45.4ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 323ms (Views: 320.4ms | ActiveRecord: 1.6ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01: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-09-07 17:01:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 Started GET "/states.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1410109297668" for 10.0.2.2 at 2014-09-07 17:01:38 +0000 User Load (11.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1410109297668"}  (8.2ms) SELECT COUNT(*) FROM "states" State Load (1.5ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Country Load (5.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) CACHE (0.0ms) SELECT COUNT(*) FROM "states" Completed 200 OK in 51ms (Views: 34.0ms | ActiveRecord: 14.8ms) Started GET "/states/new" for 10.0.2.2 at 2014-09-07 17:01:41 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (52.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Country Load (1.6ms) 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 (64.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (67.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (70.7ms) Rendered carnival/_extra_header.html.haml (0.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 287ms (Views: 284.2ms | ActiveRecord: 1.6ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17: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-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01: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-09-07 17:01:42 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:43 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:43 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:43 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:43 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:43 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:43 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:43 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:43 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:01:43 +0000 Started POST "/states" for 10.0.2.2 at 2014-09-07 17:01:54 +0000 User Load (4.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1AxptCF0D3d6pkm9cwCJXnxw7j9MqzanoQQmErK4dss=", "state"=>{"name"=>"Rio de Janeiro", "code"=>"RJ", "country_id"=>"1"}, "commit"=>"Criar"} Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction SQL (3.6ms) INSERT INTO "states" ("code", "country_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["code", "RJ"], ["country_id", 1], ["created_at", "2014-09-07 17:01:54.372841"], ["name", "Rio de Janeiro"], ["updated_at", "2014-09-07 17:01:54.372841"]]  (10.7ms) commit transaction Redirected to http://127.0.0.1:3021/states Completed 302 Found in 23ms (ActiveRecord: 14.4ms) Started GET "/states" for 10.0.2.2 at 2014-09-07 17:01:54 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#index as HTML 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (26.5ms) 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 (44.3ms) Rendered carnival/_extra_header.html.haml (0.5ms) 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 324ms (Views: 321.9ms | ActiveRecord: 1.3ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-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-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-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-09-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-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:55 +0000 Started GET "/states.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1410109315179" for 10.0.2.2 at 2014-09-07 17:01:56 +0000 User Load (8.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1410109315179"}  (1.6ms) SELECT COUNT(*) FROM "states" State Load (1.4ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) CACHE (0.0ms) SELECT COUNT(*) FROM "states" Completed 200 OK in 41ms (Views: 34.5ms | ActiveRecord: 4.8ms) Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:01:57 +0000 Started GET "/states/new" for 10.0.2.2 at 2014-09-07 17:01:58 +0000 User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Country Load (1.8ms) 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 (14.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (18.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (21.2ms) Rendered carnival/_extra_header.html.haml (0.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (56.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 287ms (Views: 283.5ms | ActiveRecord: 1.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17: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-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:01: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-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:01:59 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:02:00 +0000 Started POST "/states" for 10.0.2.2 at 2014-09-07 17:02:10 +0000 User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1AxptCF0D3d6pkm9cwCJXnxw7j9MqzanoQQmErK4dss=", "state"=>{"name"=>"Florida", "code"=>"FL", "country_id"=>"2"}, "commit"=>"Criar"} Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction SQL (1.9ms) INSERT INTO "states" ("code", "country_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["code", "FL"], ["country_id", 2], ["created_at", "2014-09-07 17:02:10.512109"], ["name", "Florida"], ["updated_at", "2014-09-07 17:02:10.512109"]]  (3.7ms) commit transaction Redirected to http://127.0.0.1:3021/states Completed 302 Found in 13ms (ActiveRecord: 5.7ms) Started GET "/states" for 10.0.2.2 at 2014-09-07 17:02:10 +0000 User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#index as HTML 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Country Load (2.0ms) 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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (28.5ms) 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 (100.3ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 323ms (Views: 320.6ms | ActiveRecord: 2.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02: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-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:11 +0000 Started GET "/states.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1410109331377" for 10.0.2.2 at 2014-09-07 17:02:12 +0000 User Load (5.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1410109331377"}  (7.1ms) SELECT COUNT(*) FROM "states" State Load (2.0ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Country Load (2.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1, 2) CACHE (0.0ms) SELECT COUNT(*) FROM "states" Completed 200 OK in 61ms (Views: 47.2ms | ActiveRecord: 12.0ms) Started GET "/states/new" for 10.0.2.2 at 2014-09-07 17:02:13 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) 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/_inner_form.html.haml (13.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (17.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (21.1ms) Rendered carnival/_extra_header.html.haml (1.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 287ms (Views: 285.0ms | ActiveRecord: 1.3ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-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-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02: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-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:02:14 +0000 Started POST "/states" for 10.0.2.2 at 2014-09-07 17:02:30 +0000 User Load (2.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1AxptCF0D3d6pkm9cwCJXnxw7j9MqzanoQQmErK4dss=", "state"=>{"name"=>"California", "code"=>"CA", "country_id"=>"2"}, "commit"=>"Criar"} Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction SQL (2.0ms) INSERT INTO "states" ("code", "country_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["code", "CA"], ["country_id", 2], ["created_at", "2014-09-07 17:02:30.664519"], ["name", "California"], ["updated_at", "2014-09-07 17:02:30.664519"]]  (4.3ms) commit transaction Redirected to http://127.0.0.1:3021/states Completed 302 Found in 13ms (ActiveRecord: 6.4ms) Started GET "/states" for 10.0.2.2 at 2014-09-07 17:02:30 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#index as HTML 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Country Load (1.5ms) 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_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (30.0ms) 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 (95.8ms) Rendered carnival/_extra_header.html.haml (0.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (55.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 360ms (Views: 358.2ms | ActiveRecord: 1.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02: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-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:31 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:32 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:32 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:32 +0000 Started GET "/states.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1410109351505" for 10.0.2.2 at 2014-09-07 17:02:32 +0000 User Load (2.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1410109351505"}  (2.6ms) SELECT COUNT(*) FROM "states" State Load (5.6ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Country Load (3.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1, 2) CACHE (0.0ms) SELECT COUNT(*) FROM "states" Completed 200 OK in 74ms (Views: 48.1ms | ActiveRecord: 11.9ms) Started GET "/person" for 10.0.2.2 at 2014-09-07 17:02:40 +0000 ActionController::RoutingError (No route matches [GET] "/person"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (52.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.6ms) Started GET "/people" for 10.0.2.2 at 2014-09-07 17:02:45 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#index as HTML 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (26.7ms) 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 (46.2ms) Rendered carnival/_extra_header.html.haml (0.7ms) 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 305ms (Views: 299.9ms | ActiveRecord: 2.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-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-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-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-09-07 17: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-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 Started GET "/people.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1410109366217" for 10.0.2.2 at 2014-09-07 17:02:46 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1410109366217"}  (1.2ms) SELECT COUNT(*) FROM "people" Person Load (1.5ms) SELECT "people".* FROM "people" ORDER BY people.id asc LIMIT 50 OFFSET 0 CACHE (0.0ms) SELECT COUNT(*) FROM "people" Completed 200 OK in 12ms (Views: 8.2ms | ActiveRecord: 2.8ms) Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:02:49 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) 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 (8.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (23.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (63.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (95.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (103.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (107.6ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 366ms (Views: 363.1ms | ActiveRecord: 1.5ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:02: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-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:02:50 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:02:51 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:02:51 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:02:51 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:02:51 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:02:51 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:10:33 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (48.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.0ms) State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.2ms) City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (74.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (155.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (86.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (324.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (331.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (336.2ms) Completed 500 Internal Server Error in 413ms NoMethodError - undefined method `person' for #: activemodel (4.1.5) lib/active_model/attribute_methods.rb:435:in `method_missing' activerecord (4.1.5) lib/active_record/attribute_methods.rb:208:in `method_missing' () project/app/presenters/carnival/base_admin_presenter.rb:179:in `must_render_field?' () project/app/views/carnival/shared/form/_inner_form.html.haml:13:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__79187885__622841778' () project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__79187885__622841778' () project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__79187885__622841778' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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:24:in `block in __project_app_views_carnival_shared_form__nested_form_html_haml__227226990__621174748' 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' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1860:in `block in fields_for_nested_model' actionview (4.1.5) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.5) 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.5) 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.5) lib/action_view/helpers/form_helper.rb:699:in `fields_for' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1859:in `fields_for_nested_model' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1845:in `block in fields_for_with_nested_attributes' activerecord (4.1.5) lib/active_record/relation/delegation.rb:46:in `each' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1843:in `fields_for_with_nested_attributes' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1517:in `fields_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/builder.rb:26:in `simple_fields_for' () project/app/views/carnival/shared/form/_nested_form.html.haml:17:in `__project_app_views_carnival_shared_form__nested_form_html_haml__227226990__621174748' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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__79187885__627020848' () project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__79187885__627020848' () project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__79187885__627020848' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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___317855901__624114278' 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.5) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.5) 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.5) 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.5) 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___317855901__624114278' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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___682209464__624208178' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:40:in `render' () project/app/controllers/carnival/base_admin_controller.rb:74:in `block (2 levels) in new' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) 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:71:in `new' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/100167690/variables" for 10.0.2.2 at 2014-09-07 17:10:34 +0000 Started POST "/__better_errors/100167690/variables" for 10.0.2.2 at 2014-09-07 17:11:13 +0000 Started POST "/__better_errors/100167690/variables" for 10.0.2.2 at 2014-09-07 17:11:15 +0000 Started POST "/__better_errors/100167690/eval" for 10.0.2.2 at 2014-09-07 17:11:20 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:11:43 +0000 User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (20.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (62.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (13.7ms) State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.2ms) City Load (2.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (81.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (159.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (69.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (94.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (362.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (368.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (373.0ms) Completed 500 Internal Server Error in 451ms NoMethodError - undefined method `list_for_select' for #: activerecord (4.1.5) lib/active_record/dynamic_matchers.rb:26:in `method_missing' () project/app/inputs/admin_relationship_select_input.rb:6: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:29:in `__project_app_views_carnival_shared_form__field_html_haml___638950215__626219108' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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__79187885__622841778' () project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__79187885__622841778' () project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__79187885__622841778' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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:24:in `block in __project_app_views_carnival_shared_form__nested_form_html_haml__227226990__621174748' 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' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1860:in `block in fields_for_nested_model' actionview (4.1.5) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.5) 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.5) 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.5) lib/action_view/helpers/form_helper.rb:699:in `fields_for' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1859:in `fields_for_nested_model' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1845:in `block in fields_for_with_nested_attributes' activerecord (4.1.5) lib/active_record/relation/delegation.rb:46:in `each' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1843:in `fields_for_with_nested_attributes' actionview (4.1.5) lib/action_view/helpers/form_helper.rb:1517:in `fields_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/builder.rb:26:in `simple_fields_for' () project/app/views/carnival/shared/form/_nested_form.html.haml:17:in `__project_app_views_carnival_shared_form__nested_form_html_haml__227226990__621174748' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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__79187885__627020848' () project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__79187885__627020848' () project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__79187885__627020848' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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___317855901__624114278' 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.5) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.5) 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.5) 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.5) 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___317855901__624114278' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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___682209464__624208178' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:40:in `render' () project/app/controllers/carnival/base_admin_controller.rb:74:in `block (2 levels) in new' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) 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:71:in `new' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/100301160/variables" for 10.0.2.2 at 2014-09-07 17:11:44 +0000 PhoneType Load (4.1ms) SELECT "phone_types".* FROM "phone_types" Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:12:07 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (55.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (14.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (48.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.4ms) Country Load (2.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.3ms) State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (9.6ms) City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (158.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (186.9ms) PhoneType Load (2.0ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (37.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (64.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (386.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (396.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (400.9ms) Rendered carnival/_extra_header.html.haml (1.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 702ms (Views: 670.8ms | ActiveRecord: 18.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:12: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-09-07 17:12:09 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:12:09 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:13:26 +0000 User Load (232.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (8.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) State Load (2.8ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.7ms) City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (34.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (42.2ms) PhoneType Load (1.3ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (20.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (100.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (104.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (108.6ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 401ms (Views: 392.2ms | ActiveRecord: 7.2ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:27 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:27 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:27 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:27 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:27 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17: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-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:13:28 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:13:30 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:13:30 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:13:30 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:13:30 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:13:30 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:13:30 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:13:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:13:47 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (22.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (41.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.5ms) State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.2ms) City Load (2.8ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (99.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (118.2ms) PhoneType Load (2.3ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (22.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (167.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (405.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (411.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (417.2ms) Rendered carnival/_extra_header.html.haml (1.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 817ms (Views: 806.7ms | ActiveRecord: 8.8ms) Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:13:48 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:13:48 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:15:54 +0000 User Load (204.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) 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.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (8.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (35.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (42.3ms) PhoneType Load (1.2ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (101.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (105.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (109.7ms) Rendered carnival/_extra_header.html.haml (0.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (58.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 531ms (Views: 523.7ms | ActiveRecord: 5.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17: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-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:15:56 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:16:03 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:16:03 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:16:03 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:16:03 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:16:03 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:16:03 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:16:03 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:03 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:04 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:04 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:04 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:16:04 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:04 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:16:25 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (71.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (10.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) 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 (0.9ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.9ms) State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (37.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (45.7ms) PhoneType Load (1.3ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (10.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (20.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (181.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (185.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (189.1ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (58.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 596ms (Views: 588.9ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17: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-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17: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-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:16:26 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:16:27 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:16:27 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:16:27 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:16:27 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:16:27 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:27 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:27 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:27 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:27 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:16:28 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:28 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:16:55 +0000 User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) 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.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (9.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (97.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.8ms) State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.5ms) City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (35.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (44.1ms) PhoneType Load (1.6ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (178.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (182.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (186.6ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 533ms (Views: 526.5ms | ActiveRecord: 5.8ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:16: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-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:16:56 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:57 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:57 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:57 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:57 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:16:57 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:16:57 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:20:28 +0000 User Load (1752.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (56.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (63.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (72.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.7ms) State Load (1.8ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (36.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (43.7ms) PhoneType Load (1.3ms) SELECT "phone_types".* FROM "phone_types" 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 (12.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (19.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (157.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (161.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (166.0ms) Rendered carnival/_extra_header.html.haml (0.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 532ms (Views: 525.2ms | ActiveRecord: 5.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17: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-09-07 17:20:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:20:32 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:20:33 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:20:33 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:20:33 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:20:33 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:20:33 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:24:19 +0000 User Load (140.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (9.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (18.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.7ms) City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (34.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (100.1ms) PhoneType Load (1.7ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (11.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (20.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (159.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (163.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (168.3ms) Rendered carnival/_extra_header.html.haml (0.6ms) 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 523ms (Views: 516.6ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:24: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-09-07 17:24:20 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:24:21 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:24:22 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:24:22 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:24:22 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:24:22 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:24:22 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:26:17 +0000 User Load (1332.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (9.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (14.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (44.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Country Load (5.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.7ms) State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.2ms) City Load (3.0ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (57.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (192.1ms) PhoneType Load (1.8ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (13.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (21.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (330.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (335.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (339.7ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (62.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 645ms (Views: 627.9ms | ActiveRecord: 12.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:19 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:26: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-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:26:20 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:26:21 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:26:21 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:26:21 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:26:21 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:26:21 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:28:43 +0000 User Load (185.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (57.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (64.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (72.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Country Load (2.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.4ms) State Load (2.2ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.2ms) City Load (1.1ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (43.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (50.8ms) PhoneType Load (1.6ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (24.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (173.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (179.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (184.8ms) Rendered carnival/_extra_header.html.haml (0.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (58.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 628ms (Views: 619.6ms | ActiveRecord: 7.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:28: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-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:28:45 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:28:46 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:28:46 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:28:46 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:28:46 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:28:46 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:28:46 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:29:46 +0000 User Load (792.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (57.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (9.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.0ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (30.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (37.4ms) PhoneType Load (1.3ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (10.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (18.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (151.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (156.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (161.1ms) Rendered carnival/_extra_header.html.haml (0.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (57.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 567ms (Views: 561.2ms | ActiveRecord: 5.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:29: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-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:29:48 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:29:49 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:29:49 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:29:49 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:29:49 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:29:49 +0000 Started GET "/cities" for 10.0.2.2 at 2014-09-07 17:30:47 +0000 User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CitiesController#index as HTML 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.3ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (7.5ms) State Load (1.5ms) SELECT "states".* FROM "states" 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.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (40.9ms) 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 (63.7ms) Rendered carnival/_extra_header.html.haml (0.8ms) 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 355ms (Views: 341.9ms | ActiveRecord: 4.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:30: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-09-07 17:30:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/cities.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1410111048614" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 User Load (3.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CitiesController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1410111048614"}  (3.9ms) SELECT COUNT(*) FROM "cities" City Load (3.2ms) SELECT "cities".* FROM "cities" ORDER BY cities.id asc LIMIT 50 OFFSET 0 CACHE (0.0ms) SELECT COUNT(*) FROM "cities" Completed 200 OK in 15ms (Views: 6.6ms | ActiveRecord: 7.1ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-09-07 17:30:49 +0000 Started GET "/cities/new" for 10.0.2.2 at 2014-09-07 17:30:51 +0000 User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CitiesController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Country Load (2.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.6ms) State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (27.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (37.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (98.7ms) Rendered carnival/_extra_header.html.haml (0.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 339ms (Views: 333.8ms | ActiveRecord: 3.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:51 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:51 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:51 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17: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-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:30:52 +0000 Started POST "/cities" for 10.0.2.2 at 2014-09-07 17:31:12 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CitiesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1AxptCF0D3d6pkm9cwCJXnxw7j9MqzanoQQmErK4dss=", "city"=>{"name"=>"São Paulo", "country_id"=>"1", "state_id"=>"1"}, "commit"=>"Criar"} Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction SQL (3.1ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", "2014-09-07 17:31:12.873044"], ["name", "São Paulo"], ["state_id", 1], ["updated_at", "2014-09-07 17:31:12.873044"]]  (15.7ms) commit transaction Redirected to http://127.0.0.1:3021/cities Completed 302 Found in 34ms (ActiveRecord: 18.9ms) Started GET "/cities" for 10.0.2.2 at 2014-09-07 17:31:12 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CitiesController#index as HTML 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.3ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) State Load (1.4ms) SELECT "states".* FROM "states" 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (28.7ms) 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 (47.4ms) Rendered carnival/_extra_header.html.haml (1.1ms) 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 337ms (Views: 333.4ms | ActiveRecord: 2.9ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:13 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:31: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-09-07 17:31:14 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/cities.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=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1410111073612" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 User Load (6.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CitiesController#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"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1410111073612"}  (4.6ms) SELECT COUNT(*) FROM "cities" City Load (9.0ms) SELECT "cities".* FROM "cities" ORDER BY cities.id asc LIMIT 50 OFFSET 0 Country Load (2.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" IN (1) CACHE (0.0ms) SELECT COUNT(*) FROM "cities" Completed 200 OK in 79ms (Views: 59.1ms | ActiveRecord: 17.8ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-09-07 17:31:14 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:31:19 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (11.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (19.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.9ms) City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (34.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (44.9ms) PhoneType Load (1.7ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (12.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (21.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (110.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (180.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (183.7ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 411ms (Views: 402.8ms | ActiveRecord: 6.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:19 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:31: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-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:31:20 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:31:21 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:31:21 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:31:21 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:31:21 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:31:21 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:32:48 +0000 User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (55.5ms) AddressType Load (1.6ms) SELECT "address_types".* FROM "address_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (9.3ms) State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.1ms) City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (97.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (187.7ms) PhoneType Load (1.2ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (24.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (103.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (378.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (386.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (390.6ms) Rendered carnival/_extra_header.html.haml (0.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (61.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 746ms (Views: 651.4ms | ActiveRecord: 21.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:32: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-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:32:50 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:32:51 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:32:51 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:32:51 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:32:51 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:32:51 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:32:51 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:32:51 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:32:51 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:32:51 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:36:40 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (15.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (103.8ms) AddressType Load (2.0ms) SELECT "address_types".* FROM "address_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (9.5ms) State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (64.8ms) City Load (1.8ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (151.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (180.8ms) PhoneType Load (1.5ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (21.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (48.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (364.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (372.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (376.7ms) Rendered carnival/_extra_header.html.haml (0.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 690ms (Views: 653.6ms | ActiveRecord: 22.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:36: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-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:36:42 +0000 Started GET "/people/new" for 10.0.2.2 at 2014-09-07 17:37:10 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by PeopleController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (64.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (9.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (18.1ms) AddressType Load (1.4ms) SELECT "address_types".* FROM "address_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.9ms) State Load (1.6ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (40.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (48.4ms) PhoneType Load (1.4ms) SELECT "phone_types".* FROM "phone_types" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (14.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (22.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (178.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (183.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (188.0ms) Rendered carnival/_extra_header.html.haml (0.7ms) 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 478ms (Views: 468.8ms | ActiveRecord: 7.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-09-07 17:37: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-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/missing.png" for 10.0.2.2 at 2014-09-07 17:37:12 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/carnival/chosen-sprite@2x.png" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-09-07 17:38:00 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 10.0.2.2 at 2014-09-07 17:38:01 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-09-07 17:38:01 +0000 ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (1.6ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.9ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_person_id' AND type='index'   (1.3ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'  (1.0ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (1.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (1.4ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_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.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.1ms) SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'  (2.6ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (1.7ms) SELECT sql FROM sqlite_master WHERE name='index_phones_on_phone_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_phones_on_phone_type_id' AND type='index'  (1.5ms)  SELECT sql FROM sqlite_master WHERE name='index_photos_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_photos_on_person_id' AND type='index'   (1.5ms) 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'  (1.7ms)  SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index'   (1.6ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index' Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:18:17 +0000 ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/users/sign_in" for 10.0.2.2 at 2014-09-27 01:18:18 +0000 Processing by Devise::SessionsController#new as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views/devise/shared/_links.erb (1.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views/devise/sessions/new.html.erb within layouts/application (112.0ms) Completed 200 OK in 594ms (Views: 571.9ms | ActiveRecord: 1.8ms) Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:18:19 +0000 Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-09-27 01:18:19 +0000 Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-09-27 01:18:19 +0000 Started GET "/assets/turbolinks.js?body=1" for 10.0.2.2 at 2014-09-27 01:18:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:18:20 +0000 Started POST "/users/sign_in" for 10.0.2.2 at 2014-09-27 01:18:59 +0000 Processing by Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"u19gGXFGvJfYjaO4BdTDe6gEI2sYoBp54xgPnZpt4Xc=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (2.5ms) UPDATE "users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-09-27 01:18:59.887500"], ["sign_in_count", 2], ["updated_at", "2014-09-27 01:18:59.889543"]]  (4.6ms) commit transaction Redirected to http://127.0.0.1:3021/countries Completed 302 Found in 240ms (ActiveRecord: 9.4ms) Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:19:00 +0000 User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.8ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (310.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (3.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (663.5ms) Completed 500 Internal Server Error in 1047ms ActionView::MissingTemplate - Missing partial countries/_index_as_list, carnival/base_admin/_index_as_list, inherited_resources/base/_index_as_list, application/_index_as_list with {:locale=>[:"pt-BR"], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder, :coffee, :haml]}. Searched in: * "/project/test/carnival-sample-application/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/ckeditor-4.1.0/app/views" * "/project/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views" : actionview (4.1.5) lib/action_view/path_set.rb:46:in `find' actionview (4.1.5) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:383:in `find_template' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:263:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:48:in `__project_app_views_carnival_base_admin_index_html_haml___58957200__615610388' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-615857048/variables" for 10.0.2.2 at 2014-09-27 01:19:01 +0000 Country Load (2.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Started POST "/__better_errors/-615857048/variables" for 10.0.2.2 at 2014-09-27 01:19:46 +0000 Started POST "/__better_errors/-615857048/eval" for 10.0.2.2 at 2014-09-27 01:19:56 +0000 Started POST "/__better_errors/-615857048/eval" for 10.0.2.2 at 2014-09-27 01:20:02 +0000 Started POST "/__better_errors/-615857048/eval" for 10.0.2.2 at 2014-09-27 01:20:21 +0000 Started POST "/__better_errors/-615857048/eval" for 10.0.2.2 at 2014-09-27 01:20:23 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:20:24 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.2ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (215.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/shared/_scope.html.haml (0.1ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_table.html.haml (214.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (673.5ms) Completed 500 Internal Server Error in 1069ms NameError - undefined local variable or method `presenter' for #<#:0xae989c8>: () project/app/views/carnival/base_admin/_index_as_table.html.haml:4:in `__project_app_views_carnival_base_admin__index_as_table_html_haml__811210970__618629268' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:46:in `__project_app_views_carnival_base_admin_index_html_haml___58957200__615610388' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/87430100/variables" for 10.0.2.2 at 2014-09-27 01:20:26 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:21:08 +0000 User Load (4.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.4ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (215.1ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_table.html.haml (229.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (688.1ms) Rendered carnival/_extra_header.html.haml (2.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (1.8ms) Completed 200 OK in 3285ms (Views: 3279.6ms | ActiveRecord: 2.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:12 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:12 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:12 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:13 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:13 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:13 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:13 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:14 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:14 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:14 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:15 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:15 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:15 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:15 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:16 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:16 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:16 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:17 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:17 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:21:17 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:17 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:18 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:19 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:19 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:20 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:21 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:21 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:21:22 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:21:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:21:22 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:21:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:21:23 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:21:23 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 01:21:24 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 01:21:24 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:21:24 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:21:25 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-09-27 01:21:25 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.7ms) Started GET "/countries/new" for 10.0.2.2 at 2014-09-27 01:23:55 +0000 User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (24.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (168.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (331.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (507.8ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1656ms (Views: 1654.0ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:23:57 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:23:58 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:23:58 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:23:58 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:23:58 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:23:59 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:23:59 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:23:59 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:23:59 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:00 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:00 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:00 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:00 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:01 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:01 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:24:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:24:02 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:24:02 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:24:02 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-27 01:24:02 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:07 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:07 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:08 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:08 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:09 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:09 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:09 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:10 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:10 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:10 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:11 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:11 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:11 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:11 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:12 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:24:12 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:29:38 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.4ms) SELECT COUNT(*) FROM "countries" 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) 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 (225.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/shared/_scope.html.haml (0.4ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_table.html.haml (136.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (588.4ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1924ms (Views: 1627.6ms | ActiveRecord: 4.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:41 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:41 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:42 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:42 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:42 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:42 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:43 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:43 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:43 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:43 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:44 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:44 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:44 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:44 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:45 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:29:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:29:45 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:29:45 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:29:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:29:46 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:29:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:29:46 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:29:47 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:29:47 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 01:29:47 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 01:29:48 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:29:48 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:29:48 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:29:59 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (209.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/shared/_scope.html.haml (0.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (77.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (508.9ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1814ms (Views: 1543.6ms | ActiveRecord: 4.9ms) Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:02 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:02 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:02 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:02 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:03 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:03 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:03 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:03 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:04 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:04 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:04 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:04 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:05 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:05 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:05 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:05 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:06 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:06 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:06 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:30:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:07 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:07 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:07 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:08 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:08 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:08 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:09 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:09 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:09 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:10 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:10 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:10 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:10 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:11 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:30:11 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:30:11 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:30:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:30:12 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:30:12 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:30:13 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:30:13 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:30:13 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:31:54 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.0ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (278.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/shared/_scope.html.haml (0.1ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (77.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (575.9ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1930ms (Views: 1652.0ms | ActiveRecord: 5.1ms) Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:57 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:57 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:57 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:58 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:58 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:58 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:58 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:59 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:59 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:59 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:31:59 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:00 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:00 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:00 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:01 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:01 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:01 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:01 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:02 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:32:02 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:02 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:02 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:03 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:03 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:03 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:04 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:04 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:04 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:05 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:05 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:05 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:06 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:06 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:32:06 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:32:06 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:32:07 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:32:07 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:32:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:32:08 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:32:08 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:32:08 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:33:11 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.4ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (211.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/shared/_scope.html.haml (0.1ms) Country Load (2.0ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (81.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (507.4ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.4ms) Completed 200 OK in 1918ms (Views: 1640.2ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:14 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:14 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:15 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:15 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:15 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:15 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:16 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:16 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:16 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:16 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:17 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:17 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:17 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:17 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:18 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:18 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:33:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:20 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:20 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:21 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:22 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:22 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:23 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:23 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:23 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:33:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:33:24 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:33:24 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:33:25 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:33:25 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:33:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:33:26 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:33:26 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:34:36 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.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 (211.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/shared/_scope.html.haml (0.1ms) Country Load (1.0ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (71.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (506.5ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1558ms (Views: 1553.3ms | ActiveRecord: 2.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:38 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:39 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:39 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:39 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:39 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:40 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:40 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:40 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:40 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:41 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:41 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:41 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:41 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:42 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:43 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:43 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:34:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:44 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:44 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:45 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:46 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:46 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:46 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:47 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:47 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:47 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:34:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:34:48 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:34:48 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:34:49 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:34:49 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:34:50 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:34:50 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:34:50 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:35:49 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.2ms) SELECT COUNT(*) FROM "countries" 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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (218.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/shared/_scope.html.haml (0.1ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_table.html.haml (71.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (518.3ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (68.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1936ms (Views: 1671.4ms | ActiveRecord: 3.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:53 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:53 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:53 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:54 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:54 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:54 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:54 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:55 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:55 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:55 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:55 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:56 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:56 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:56 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:56 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:57 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:57 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:57 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:57 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:58 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:35:58 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:35:58 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:35:59 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:35:59 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:35:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:35:59 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:00 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:00 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:00 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:00 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:01 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:02 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:02 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:02 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:03 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:03 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:03 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:36:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:36:04 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:36:04 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:36:05 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:36:05 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 01:36:05 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:36:06 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 01:36:06 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:36:06 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:36:06 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:39:53 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" 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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (204.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (78.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (493.9ms) Rendered carnival/_extra_header.html.haml (1.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1868ms (Views: 1532.8ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:56 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:57 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:57 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:57 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:57 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:58 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:58 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:58 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:58 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:59 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:59 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:39:59 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:00 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:00 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:00 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:01 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:01 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:01 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:01 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:02 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:02 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:02 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:03 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:04 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:04 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:04 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:05 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:05 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:05 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:06 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:06 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:40:06 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:40:07 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:40:07 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:40:07 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:40:08 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:40:08 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:40:08 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:40:26 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (206.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/shared/_scope.html.haml (0.1ms) Country Load (1.1ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (13.3ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (434.8ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1479ms (Views: 1474.0ms | ActiveRecord: 2.9ms) Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:28 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:29 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:29 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:29 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:29 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:30 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:30 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:30 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:30 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:31 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:31 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:31 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:31 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:32 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:32 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:32 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:33 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:33 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:40:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:34 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:34 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01: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-09-27 01:40:36 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:36 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:36 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:37 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:37 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:37 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:40:38 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:40:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:40:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:40:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:40:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:40:39 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:40:40 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:40:40 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:41:09 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.6ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (212.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/shared/_scope.html.haml (0.1ms) Country Load (1.9ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (12.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (441.6ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1474ms (Views: 1467.9ms | ActiveRecord: 3.6ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:12 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:12 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:12 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:13 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:13 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:13 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:13 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:14 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:14 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:14 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:14 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:15 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:15 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:15 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:16 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:16 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:16 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:16 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:17 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:17 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:17 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:18 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:19 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:19 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:20 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:20 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:21 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:41:21 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:41:21 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:41:22 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:41:22 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:41:22 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:41:23 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:41:23 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:41:24 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:35 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:35 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:35 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:36 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:36 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:37 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:37 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:37 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:37 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:38 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:38 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:38 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:38 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:39 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:40 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:41 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:42 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:43 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:41:43 +0000 Started GET "/states" for 10.0.2.2 at 2014-09-27 01:42:12 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by StatesController#index as HTML  (1.6ms) SELECT COUNT(*) FROM "states" 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.4ms) Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (18.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.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (267.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/shared/_scope.html.haml (0.1ms) State Load (1.7ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1, 2) Rendered /project/app/views/carnival/base_admin/_index_as_table.html.haml (162.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "states" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (708.7ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1781ms (Views: 1760.8ms | ActiveRecord: 8.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:14 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:14 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:15 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:15 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:15 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:15 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:16 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:16 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:16 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:16 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:17 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:17 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:17 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:17 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:18 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:18 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:20 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:20 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:21 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:22 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:22 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:23 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:23 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:23 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:42:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:42:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:42:24 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:42:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:42:25 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:42:25 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 01:42:25 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 01:42:26 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:42:26 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:42:26 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:29 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:30 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:30 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:31 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:31 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:32 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:32 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:33 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:33 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:33 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:34 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:34 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:34 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:35 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:35 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:35 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:36 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:42:37 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:46:51 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.6ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (205.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/shared/_scope.html.haml (0.1ms) Country Load (1.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (15.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (432.9ms) Rendered carnival/_extra_header.html.haml (1.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1764ms (Views: 1758.2ms | ActiveRecord: 2.8ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:53 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:53 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:54 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:54 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:54 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:55 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:55 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:55 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:55 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:56 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:56 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:56 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:56 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:57 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:57 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:57 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:58 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:58 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:46:58 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:46:58 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:46:59 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:46:59 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:46:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:46:59 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:00 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:00 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:00 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:00 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:01 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:01 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:01 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:01 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:02 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:02 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:02 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:47:02 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:47:03 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:47:03 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:47:03 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:47:04 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:47:04 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:47:05 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:47:05 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:47:55 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.3ms) SELECT COUNT(*) FROM "countries" 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.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 (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (219.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/shared/_scope.html.haml (0.1ms) Country Load (1.0ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (80.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (519.1ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1823ms (Views: 1562.9ms | ActiveRecord: 4.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:47:58 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:47:58 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:47:58 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:47:58 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:47:59 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:47:59 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:47:59 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:47:59 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:00 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:00 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:00 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:00 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:01 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:01 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:01 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:01 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:02 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:02 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:02 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:02 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:03 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:03 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:03 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:03 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:04 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:04 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:04 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:05 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:05 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:05 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:05 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:06 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:06 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:06 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:06 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:07 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:07 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:48:07 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:48:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:48:08 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:48:08 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:48:09 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:48:09 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:48:09 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:48:38 +0000 User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" 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_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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (217.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (11.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (456.5ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (63.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 1597ms (Views: 1590.6ms | ActiveRecord: 3.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:40 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:41 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:41 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:41 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:41 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:42 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:42 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:42 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:42 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:43 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:43 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:43 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:43 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:44 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:44 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:45 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:45 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:48:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:46 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:46 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:46 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:47 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:48 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:48 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:48 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:48 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:49 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:49 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:49 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:48:50 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:48:50 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:48:50 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:48:51 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:48:51 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:48:52 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:48:52 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:48:52 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:49:16 +0000 User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (211.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/shared/_scope.html.haml (0.1ms) Country Load (1.0ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (9.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (436.1ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1711ms (Views: 1705.8ms | ActiveRecord: 2.5ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:18 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:19 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:19 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:19 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:19 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:20 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:20 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:20 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:20 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:21 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:21 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:21 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:22 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:22 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:23 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:23 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:49:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:24 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:24 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:26 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:26 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:27 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:27 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:28 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:49:28 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:49:28 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:49:28 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:49:29 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:49:29 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:49:30 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:49:30 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:49:31 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:50:48 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.6ms) SELECT COUNT(*) FROM "countries" 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_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 (220.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Country Load (1.1ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (9.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (451.9ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (62.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1718ms (Views: 1712.9ms | ActiveRecord: 2.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:50 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:51 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:51 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:51 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:51 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:52 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:52 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:52 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:52 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:53 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:53 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:53 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:53 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:54 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:54 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:55 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:50:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:56 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:56 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01: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-09-27 01:50:58 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:58 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:58 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:59 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:50:59 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:00 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:00 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:51:00 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:51:00 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:51:01 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:51:01 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:51:02 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:51:02 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:51:02 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:51:23 +0000 User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (205.8ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.1ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (9.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (433.6ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 1727ms (Views: 1721.9ms | ActiveRecord: 2.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:25 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:26 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:26 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:26 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:26 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:27 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:27 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:27 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:27 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:28 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:28 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:28 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:28 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:29 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:29 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:30 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:30 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:51:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:31 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:31 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:32 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:32 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:33 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:33 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:34 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:34 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:34 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:34 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:35 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:51:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:51:35 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:51:35 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:51:36 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:51:36 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:51:37 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:51:37 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:51:37 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:52:12 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.0ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (206.5ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (9.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (425.2ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1734ms (Views: 1728.8ms | ActiveRecord: 2.3ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:14 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:15 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:15 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:15 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:15 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:16 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:16 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:16 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:17 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:17 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:17 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:17 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:18 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:19 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:19 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:20 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:20 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:21 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:22 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:22 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:22 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:23 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:23 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:23 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:24 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:24 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:52:24 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:52:25 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:52:25 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:52:25 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:52:26 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:52:26 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:52:26 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:52:36 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.6ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (211.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/shared/_scope.html.haml (0.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (12.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (497.5ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1728ms (Views: 1722.1ms | ActiveRecord: 3.4ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:38 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:38 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:39 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:39 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:39 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:40 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:40 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:40 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:40 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:40 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:41 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:41 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:41 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:42 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:43 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:43 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:52:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:44 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:44 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:45 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:46 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:46 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:46 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:47 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:47 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:47 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:52:48 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:52:48 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:52:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:52:49 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:52:49 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:52:49 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:52:50 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:52:50 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:55:36 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (209.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/shared/_scope.html.haml (0.1ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (10.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (444.4ms) Rendered carnival/_extra_header.html.haml (0.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1751ms (Views: 1745.9ms | ActiveRecord: 3.0ms) Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:38 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:38 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:38 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:39 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:39 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:39 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:40 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:40 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:40 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:40 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:41 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:41 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:41 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:41 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:42 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:42 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:43 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:55:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:43 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:44 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:44 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:45 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:46 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:46 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:47 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:47 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:47 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:55:48 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:55:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:55:48 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:55:48 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:55:49 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:55:49 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:55:50 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:55:50 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:56:15 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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 (217.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/shared/_scope.html.haml (0.1ms) Country Load (1.1ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (13.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (442.7ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (67.3ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1734ms (Views: 1728.4ms | ActiveRecord: 2.6ms) Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:18 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:18 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:18 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:19 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:19 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:19 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:19 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:20 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:20 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:20 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:20 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:21 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:21 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:22 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:22 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:23 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:23 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:24 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01: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-09-27 01:56:25 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:26 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:27 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:27 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:27 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:56:27 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:56:28 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:56:28 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:56:28 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:56:29 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:56:29 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:56:30 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:56:30 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:56:53 +0000 User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (214.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/shared/_scope.html.haml (0.1ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (10.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (448.4ms) Rendered carnival/_extra_header.html.haml (1.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1752ms (Views: 1745.5ms | ActiveRecord: 3.3ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:55 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:56 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:56 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:56 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:56 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:57 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:57 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:57 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:57 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:58 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:58 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:58 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:58 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:56:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:00 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:00 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:00 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:01 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:01 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:03 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:03 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:04 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:04 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:04 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:05 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:05 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:57:05 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:57:06 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:57:06 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:57:06 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:57:07 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:57:07 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:57:08 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:57:16 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.1ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (212.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/shared/_scope.html.haml (0.1ms) Country Load (1.8ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (13.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (437.7ms) Rendered carnival/_extra_header.html.haml (1.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1774ms (Views: 1768.0ms | ActiveRecord: 3.0ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:19 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:19 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:19 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:20 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:20 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:20 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:20 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:21 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:21 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:21 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:21 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:22 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:22 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:22 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:23 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:23 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:23 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:23 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:24 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:24 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:57:24 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:25 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:25 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:26 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:26 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:26 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:27 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:27 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:27 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:28 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:28 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:28 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 01:57:28 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 01:57:29 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 01:57:29 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 01:57:29 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 01:57:30 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 01:57:30 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 01:57:31 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 01:57:31 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:59:39 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.3ms) SELECT COUNT(*) FROM "countries" 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) 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 (296.9ms) 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/shared/_scope.html.haml (0.2ms) Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (2.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (524.5ms) Completed 500 Internal Server Error in 641ms Haml::SyntaxError - The line was indented 2 levels deeper than the previous line.: haml (4.0.5) lib/haml/parser.rb:128:in `parse' haml (4.0.5) lib/haml/engine.rb:66:in `initialize' haml (4.0.5) lib/haml/template/plugin.rb:25:in `compile' haml (4.0.5) lib/haml/template/plugin.rb:30:in `call' actionview (4.1.5) lib/action_view/template.rb:270:in `compile' actionview (4.1.5) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:244:in `block in compile!' actionview (4.1.5) lib/action_view/template.rb:232:in `compile!' actionview (4.1.5) lib/action_view/template.rb:144:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:48:in `__project_app_views_carnival_base_admin_index_html_haml___58957200_86898670' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/91492990/variables" for 10.0.2.2 at 2014-09-27 01:59:41 +0000 Country Load (2.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Started GET "/countries" for 10.0.2.2 at 2014-09-27 01:59:51 +0000 User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (231.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/shared/_scope.html.haml (0.1ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (7.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (471.1ms) Rendered carnival/_extra_header.html.haml (1.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (12.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1666ms (Views: 1660.0ms | ActiveRecord: 3.6ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:53 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:53 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:54 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:54 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:55 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:55 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:55 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:55 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:56 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:56 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:56 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:56 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:57 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:57 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:57 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:58 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:58 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:59 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 01:59:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:01 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:02 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:03 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:04 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:05 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:06 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:07 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:07 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:08 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:09 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:09 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:10 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:12 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 02:00:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 02:00:13 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 02:00:13 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 02:00:14 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 02:00:14 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 02:00:14 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 02:00:15 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 02:00:35 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.4ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (216.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/shared/_scope.html.haml (0.1ms) Country Load (1.8ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (12.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (449.3ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1568ms (Views: 1562.4ms | ActiveRecord: 3.2ms) Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:37 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:37 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:37 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:38 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:38 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:38 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:38 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:39 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:39 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:39 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:39 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:40 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:40 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:40 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:40 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:41 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:41 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:41 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:41 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:42 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 02:00:42 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:42 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:42 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:43 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:43 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:43 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:43 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:44 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:44 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:44 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:44 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:45 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:45 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:45 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:45 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:46 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:46 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 02:00:46 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 02:00:47 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 02:00:47 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 02:00:47 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 02:00:48 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 02:00:48 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 02:00:49 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 02:00:49 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 02:03:11 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (222.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (72.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (525.4ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1585ms (Views: 1579.8ms | ActiveRecord: 3.2ms) Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:13 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:13 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:13 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:14 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:14 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:14 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:14 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:15 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:15 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:15 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:15 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:16 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:16 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:17 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:17 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:18 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:20 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:21 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:24 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:25 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:26 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:27 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:27 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:27 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:28 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 02:03:28 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 02:03:28 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 02:03:29 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 02:03:29 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 02:03:29 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 02:03:30 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 02:03:30 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 02:03:49 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.3ms) SELECT COUNT(*) FROM "countries" 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (225.2ms) 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/shared/_scope.html.haml (0.1ms) Country Load (4.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (15.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (517.0ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1596ms (Views: 1587.8ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:51 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:51 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:52 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:52 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:52 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:53 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:53 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:53 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:53 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:54 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:54 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:54 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:55 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:55 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:55 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:55 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:56 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:56 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 02:03:56 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:57 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:57 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:57 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:58 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:58 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:58 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:58 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:59 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:59 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:59 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 02:03:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 02:04:00 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 02:04:00 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 02:04:00 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 02:04:01 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 02:04:01 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 02:04:01 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 02:04:01 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 02:04:02 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 02:04:02 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 02:04:02 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 02:04:03 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.7ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 02:04:03 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 02:04:03 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 02:04:04 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:26:09 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.4ms) SELECT COUNT(*) FROM "countries" 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) 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 (263.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (469.0ms) Completed 500 Internal Server Error in 827ms NoMethodError - undefined method `index_type_is_table?' for #: () project/app/views/carnival/base_admin/index.html.haml:50:in `__project_app_views_carnival_base_admin_index_html_haml___58957200__630525258' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/91966830/variables" for 10.0.2.2 at 2014-09-27 18:26:11 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:26:27 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (225.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/shared/_scope.html.haml (0.1ms) Country Load (1.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (74.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (530.3ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1605ms (Views: 1599.3ms | ActiveRecord: 2.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:30 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:30 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:30 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:30 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:31 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:31 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:31 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:31 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:32 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:32 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:32 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:32 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:33 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:34 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:34 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:34 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:34 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:35 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:26:35 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:35 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:35 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:36 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:36 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:36 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:37 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:37 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:37 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:38 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:38 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:39 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:39 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:26:39 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:26:39 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:26:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:26:40 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:26:41 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:26:41 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 18:26:41 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:26:41 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.3ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:26:42 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:26:42 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:26:42 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:27:50 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (240.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/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (552.0ms) Completed 500 Internal Server Error in 666ms ActionView::MissingTemplate - Missing partial countries/_index_as_grid, carnival/base_admin/_index_as_grid, inherited_resources/base/_index_as_grid, application/_index_as_grid with {:locale=>[:"pt-BR"], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder, :coffee, :haml]}. Searched in: * "/project/test/carnival-sample-application/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/ckeditor-4.1.0/app/views" * "/project/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views" : actionview (4.1.5) lib/action_view/path_set.rb:46:in `find' actionview (4.1.5) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:383:in `find_template' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:263:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:50:in `__project_app_views_carnival_base_admin_index_html_haml___58957200__632065988' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-636076898/variables" for 10.0.2.2 at 2014-09-27 18:27:51 +0000 Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:32:49 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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.7ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (215.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/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (527.5ms) Completed 500 Internal Server Error in 949ms ActionView::MissingTemplate - Missing partial countries/_index_as_grid, carnival/base_admin/_index_as_grid, inherited_resources/base/_index_as_grid, application/_index_as_grid with {:locale=>[:"pt-BR"], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder, :coffee, :haml]}. Searched in: * "/project/test/carnival-sample-application/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/ckeditor-4.1.0/app/views" * "/project/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views" : actionview (4.1.5) lib/action_view/path_set.rb:46:in `find' actionview (4.1.5) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:383:in `find_template' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:263:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:50:in `__project_app_views_carnival_base_admin_index_html_haml___58957200__632065988' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-618602208/variables" for 10.0.2.2 at 2014-09-27 18:32:51 +0000 Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:33:01 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.1ms) SELECT COUNT(*) FROM "countries" 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_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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (221.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/shared/_scope.html.haml (0.1ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (76.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (535.4ms) Rendered carnival/_extra_header.html.haml (0.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1648ms (Views: 1642.9ms | ActiveRecord: 2.7ms) Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:03 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:03 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:04 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:04 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:04 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:04 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:05 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:05 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:05 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:05 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:06 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:06 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:06 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:06 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:07 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:07 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:07 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:08 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:33:08 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:09 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:09 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:10 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:11 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:11 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:12 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:12 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:12 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:33:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:33:13 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:33:13 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:33:14 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:33:14 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:33:14 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 18:33:15 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:33:15 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (47.6ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:33:15 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:33:16 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:33:16 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:34:29 +0000 User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (224.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/shared/_scope.html.haml (0.2ms) Country Load (1.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (10.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (459.0ms) Rendered carnival/_extra_header.html.haml (0.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 1513ms (Views: 1506.6ms | ActiveRecord: 2.9ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:31 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:31 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:31 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:32 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:32 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:32 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:32 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:33 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:33 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:33 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:33 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:34 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:34 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:35 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:35 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:36 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:34:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:36 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:37 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:38 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:39 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:39 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:40 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:40 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:40 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:34:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:34:41 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:34:41 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:34:41 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:34:42 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:34:42 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 18:34:43 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:34:43 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (42.6ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:34:43 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:34:44 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:34:44 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:36:02 +0000 User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.7ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (225.6ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.1ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (10.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (459.9ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (64.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 1618ms (Views: 1612.7ms | ActiveRecord: 2.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:04 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:04 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:05 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:05 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:05 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:05 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:06 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:06 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:06 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:06 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:07 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:07 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:07 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:08 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:08 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:08 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:09 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:09 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:09 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:10 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:10 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:10 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:10 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:11 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:11 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:11 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:11 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:12 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:12 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:12 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:13 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:13 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:13 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:13 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:14 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:14 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:36:14 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:36:15 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:36:15 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:36:15 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:36:16 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 18:36:16 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:36:16 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (46.3ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:36:17 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:36:17 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:36:17 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:36:47 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.1ms) SELECT COUNT(*) FROM "countries" 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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (215.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (10.3ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (440.7ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2463ms (Views: 2457.1ms | ActiveRecord: 2.5ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:50 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:50 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:50 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:51 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:51 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:51 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:51 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:52 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:52 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:52 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:52 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:53 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:53 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:53 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:54 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:54 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:55 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:36:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:56 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:56 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:58 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:58 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:58 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:59 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:59 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:36:59 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:00 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:37:00 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:37:00 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:37:01 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:37:01 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:37:02 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 18:37:02 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:37:02 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.3ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:37:03 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:37:03 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:37:03 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:37:16 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (215.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/shared/_scope.html.haml (0.1ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (11.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (449.3ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1788ms (Views: 1781.8ms | ActiveRecord: 3.3ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:19 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:19 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:19 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:19 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:20 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:20 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:21 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:21 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:21 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:21 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:22 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:22 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:22 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:22 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:23 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:23 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:23 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:23 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:24 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:24 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:37:24 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:25 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:25 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:26 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:26 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:26 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:27 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:27 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:27 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:28 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:28 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:28 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:28 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:37:29 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:37:29 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:37:29 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:37:29 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:37:30 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:37:30 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 18:37:31 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:37:31 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.6ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:37:31 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:37:32 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:37:32 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:37:58 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.2ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.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 (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (274.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/shared/_scope.html.haml (0.1ms) Country Load (1.1ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (11.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (500.6ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1799ms (Views: 1793.9ms | ActiveRecord: 2.3ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:00 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:01 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:01 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:01 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:02 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:02 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:02 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:02 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:03 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:03 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:03 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:03 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:04 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:04 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:04 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:05 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:05 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:05 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:05 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:06 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:06 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:06 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:07 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:07 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:07 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:08 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:08 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:08 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:09 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:09 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:09 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:10 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:10 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:10 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:10 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:11 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:38:11 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:38:11 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:38:12 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:38:12 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:38:13 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 18:38:13 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:38:13 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.9ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:38:14 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:38:14 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:38:14 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (218.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (9.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (454.6ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1790ms (Views: 1784.4ms | ActiveRecord: 2.9ms) Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:38:16 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:17 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:17 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:17 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:18 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:18 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:18 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:18 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:19 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:19 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:19 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:20 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:20 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:20 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:20 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:21 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:22 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:22 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:23 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:23 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:24 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:25 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:25 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:25 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:26 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:26 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:26 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:27 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:38:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:38:28 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:38:28 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:38:28 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:38:29 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 18:38:29 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:38:29 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (130.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:38:30 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:38:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:38:31 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:38:43 +0000 User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.1ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (212.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/shared/_scope.html.haml (0.1ms) Country Load (0.9ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (11.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (425.5ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 1778ms (Views: 1773.0ms | ActiveRecord: 2.0ms) Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:46 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:46 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:46 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:47 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:47 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:47 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:47 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:48 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:48 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:48 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:48 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:49 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:49 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:49 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:49 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:50 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:50 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:50 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:50 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:51 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:38:51 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:51 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:52 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:52 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:52 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:53 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:53 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:53 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:53 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:54 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:54 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:54 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:55 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:55 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:55 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:55 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:38:56 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:38:56 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:38:56 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:38:57 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:38:57 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-27 18:38:57 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:38:58 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:38:58 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:38:58 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.4ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:38:59 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:38:59 +0000 ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddFlagToCountry (20140927184139)  (0.1ms) begin transaction  (4.0ms) ALTER TABLE "countries" ADD "flag" attachment SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140927184139"]]  (6.7ms) commit transaction ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_person_id' AND type='index'   (1.0ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (1.5ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (0.9ms) 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_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='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (1.0ms) SELECT sql FROM sqlite_master WHERE name='index_phones_on_phone_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_phones_on_phone_type_id' AND type='index'  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_photos_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_photos_on_person_id' AND type='index'   (1.5ms) 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'  (1.7ms)  SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index'   (1.6ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index' Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:43:00 +0000 ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations" User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Completed 500 Internal Server Error in 54ms NameError - undefined local variable or method `actions' for CountryPresenter:Class: () project/test/carnival-sample-application/app/presenters/country_presenter.rb:18:in `' () project/test/carnival-sample-application/app/presenters/country_presenter.rb:1:in `' activesupport (4.1.5) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.5) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.5) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.5) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.5) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.5) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.5) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' () project/app/controllers/carnival/base_admin_controller.rb:143:in `carnival_presenter_class' () project/app/controllers/carnival/base_admin_controller.rb:135:in `instantiate_presenter' () project/app/controllers/carnival/base_admin_controller.rb:28:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/98306370/variables" for 10.0.2.2 at 2014-09-27 18:43:02 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:43:48 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.2ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (213.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/shared/_scope.html.haml (0.1ms) Country Load (1.8ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (79.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (514.6ms) Rendered carnival/_extra_header.html.haml (1.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1923ms (Views: 1642.4ms | ActiveRecord: 5.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:51 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:52 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:52 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:52 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:53 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:53 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:53 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:53 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:54 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:54 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:54 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:54 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:55 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:55 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:55 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:55 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:56 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:56 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:57 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:57 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:43:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:43:57 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:43:58 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:43:58 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:43:58 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:43:58 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:43:59 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:43:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:43:59 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:43:59 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:00 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:00 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:00 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:00 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:01 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:01 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:01 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:02 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:44:02 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:44:02 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:44:03 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:44:03 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:44:03 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:44:04 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:44:04 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (50.9ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:44:04 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:44:05 +0000 Started GET "/countries/1/edit" for 10.0.2.2 at 2014-09-27 18:44:07 +0000 User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#edit as HTML Parameters: {"id"=>"1"} 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 (19.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (190.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (240.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (283.0ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1444ms (Views: 1439.3ms | ActiveRecord: 1.4ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:09 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:09 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:09 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:10 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:10 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:10 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:11 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:11 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:11 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:11 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:12 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:12 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:12 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:12 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:13 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:13 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:14 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:14 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:15 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:15 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:15 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:44:16 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:16 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:16 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:17 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:19 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:21 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:21 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:44:21 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-09-27 18:44:22 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:44:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:44:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:44:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:44:23 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:44:23 +0000 Started PATCH "/countries/1" for 10.0.2.2 at 2014-09-27 18:44:58 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "country"=>{"name"=>"Brazil", "code"=>"BR", "flag"=>#, @original_filename="brasil-flag.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"country[flag]\"; filename=\"brasil-flag.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Atualizar", "id"=>"1"} Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: flag Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 8ms NoMethodError - undefined method `flag_content_type' for #: activemodel (4.1.5) lib/active_model/attribute_methods.rb:435:in `method_missing' activerecord (4.1.5) lib/active_record/attribute_methods.rb:208:in `method_missing' paperclip (4.2.0) lib/paperclip/validators/attachment_content_type_validator.rb:16:in `validate_each' activemodel (4.1.5) lib/active_model/validator.rb:167:in `block in validate' activemodel (4.1.5) lib/active_model/validator.rb:164:in `validate' activesupport (4.1.5) lib/active_support/callbacks.rb:447:in `block in make_lambda' activesupport (4.1.5) lib/active_support/callbacks.rb:184:in `block in simple' activesupport (4.1.5) lib/active_support/callbacks.rb:178:in `block in conditional' activesupport (4.1.5) lib/active_support/callbacks.rb:185:in `block in simple' activesupport (4.1.5) lib/active_support/callbacks.rb:185:in `block in simple' activesupport (4.1.5) lib/active_support/callbacks.rb:185:in `block in simple' activesupport (4.1.5) lib/active_support/callbacks.rb:185:in `block in simple' activesupport (4.1.5) lib/active_support/callbacks.rb:185:in `block in simple' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' activemodel (4.1.5) lib/active_model/validations.rb:376:in `run_validations!' activemodel (4.1.5) lib/active_model/validations/callbacks.rb:111:in `block in run_validations!' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' activemodel (4.1.5) lib/active_model/validations/callbacks.rb:111:in `run_validations!' activemodel (4.1.5) lib/active_model/validations.rb:317:in `valid?' activerecord (4.1.5) lib/active_record/validations.rb:70:in `valid?' activerecord (4.1.5) lib/active_record/validations.rb:77:in `perform_validations' activerecord (4.1.5) lib/active_record/validations.rb:51:in `save' activerecord (4.1.5) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.1.5) lib/active_record/transactions.rb:268:in `block (2 levels) in save' activerecord (4.1.5) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:199:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:208:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:326:in `with_transaction_returning_status' activerecord (4.1.5) lib/active_record/transactions.rb:268:in `block in save' activerecord (4.1.5) lib/active_record/transactions.rb:283:in `rollback_active_record_state!' activerecord (4.1.5) lib/active_record/transactions.rb:267:in `save' activerecord (4.1.5) lib/active_record/persistence.rb:232:in `block in update' activerecord (4.1.5) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:208:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:326:in `with_transaction_returning_status' activerecord (4.1.5) 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:95:in `update' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-626850808/variables" for 10.0.2.2 at 2014-09-27 18:44:59 +0000 Started PATCH "/countries/1" for 10.0.2.2 at 2014-09-27 18:45:25 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "country"=>{"name"=>"Brazil", "code"=>"BR", "flag"=>#, @original_filename="brasil-flag.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"country[flag]\"; filename=\"brasil-flag.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Atualizar", "id"=>"1"} Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 190ms Paperclip::Error - Country model missing required attr_accessor for 'flag_file_name': paperclip (4.2.0) lib/paperclip/attachment.rb:409:in `block in ensure_required_accessors!' paperclip (4.2.0) lib/paperclip/attachment.rb:407:in `ensure_required_accessors!' paperclip (4.2.0) lib/paperclip/attachment.rb:97:in `assign' paperclip (4.2.0) lib/paperclip/has_attached_file.rb:66:in `block in define_setter' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:45:in `_assign_attribute' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:32:in `block in assign_attributes' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:26:in `assign_attributes' activerecord (4.1.5) lib/active_record/persistence.rb:231:in `block in update' activerecord (4.1.5) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:208:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:326:in `with_transaction_returning_status' activerecord (4.1.5) 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:95:in `update' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/98539870/variables" for 10.0.2.2 at 2014-09-27 18:45:26 +0000 Started POST "/__better_errors/98539870/eval" for 10.0.2.2 at 2014-09-27 18:46:26 +0000 Started POST "/__better_errors/98539870/eval" for 10.0.2.2 at 2014-09-27 18:46:30 +0000 Started PATCH "/countries/1" for 10.0.2.2 at 2014-09-27 18:46:54 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "country"=>{"name"=>"Brazil", "code"=>"BR", "flag"=>#, @original_filename="brasil-flag.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"country[flag]\"; filename=\"brasil-flag.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Atualizar", "id"=>"1"} Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 190ms Paperclip::Error - Country model missing required attr_accessor for 'flag_file_name': paperclip (4.2.0) lib/paperclip/attachment.rb:409:in `block in ensure_required_accessors!' paperclip (4.2.0) lib/paperclip/attachment.rb:407:in `ensure_required_accessors!' paperclip (4.2.0) lib/paperclip/attachment.rb:97:in `assign' paperclip (4.2.0) lib/paperclip/has_attached_file.rb:66:in `block in define_setter' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:45:in `_assign_attribute' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:32:in `block in assign_attributes' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:26:in `assign_attributes' activerecord (4.1.5) lib/active_record/persistence.rb:231:in `block in update' activerecord (4.1.5) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:208:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:326:in `with_transaction_returning_status' activerecord (4.1.5) 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:95:in `update' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/92381500/variables" for 10.0.2.2 at 2014-09-27 18:46:55 +0000 Started POST "/__better_errors/92381500/eval" for 10.0.2.2 at 2014-09-27 18:47:10 +0000 Started POST "/__better_errors/92381500/eval" for 10.0.2.2 at 2014-09-27 18:47:16 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_person_id' AND type='index'   (1.0ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'  (1.6ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (1.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (1.9ms) 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.6ms)  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.8ms) SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'  (1.5ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (1.5ms) SELECT sql FROM sqlite_master WHERE name='index_phones_on_phone_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_phones_on_phone_type_id' AND type='index'  (1.0ms)  SELECT sql FROM sqlite_master WHERE name='index_photos_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_photos_on_person_id' AND type='index'   (1.1ms) 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'  (1.0ms)  SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index'   (1.5ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index' Started PATCH "/countries/1" for 10.0.2.2 at 2014-09-27 18:51:58 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "country"=>{"name"=>"Brazil", "code"=>"BR", "flag"=>#, @original_filename="brasil-flag.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"country[flag]\"; filename=\"brasil-flag.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Atualizar", "id"=>"1"} Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 178ms Paperclip::Error - Country model missing required attr_accessor for 'flag_file_name': paperclip (4.2.0) lib/paperclip/attachment.rb:409:in `block in ensure_required_accessors!' paperclip (4.2.0) lib/paperclip/attachment.rb:407:in `ensure_required_accessors!' paperclip (4.2.0) lib/paperclip/attachment.rb:97:in `assign' paperclip (4.2.0) lib/paperclip/has_attached_file.rb:66:in `block in define_setter' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:45:in `_assign_attribute' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:32:in `block in assign_attributes' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:26:in `assign_attributes' activerecord (4.1.5) lib/active_record/persistence.rb:231:in `block in update' activerecord (4.1.5) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:208:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:326:in `with_transaction_returning_status' activerecord (4.1.5) 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:95:in `update' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/91576020/variables" for 10.0.2.2 at 2014-09-27 18:51:59 +0000 Started GET "/countries/1" for 10.0.2.2 at 2014-09-27 18:52:03 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#show as HTML Parameters: {"id"=>"1"} Country Load (1.6ms) 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 (189.0ms) Rendered carnival/_extra_header.html.haml (2.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (3.2ms) Completed 200 OK in 2372ms (Views: 2368.0ms | ActiveRecord: 1.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:06 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:07 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:07 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:07 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:07 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:08 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:08 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:08 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:09 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:09 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:09 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:09 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:10 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:10 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:10 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:11 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:11 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:12 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:12 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:13 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:13 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:15 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:15 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:15 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:16 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:16 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:17 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:52:17 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:52:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:52:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:52:20 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:52:21 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 18:52:23 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.3ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (276.6ms) 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/shared/_scope.html.haml (2.4ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (164.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (685.6ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1990ms (Views: 1881.1ms | ActiveRecord: 2.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:27 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:27 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:27 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:28 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:28 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:28 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:28 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:29 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:29 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:29 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:29 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:30 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:30 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:31 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:31 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:32 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:32 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:32 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:32 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:33 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:33 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:34 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:34 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:35 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:35 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:35 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:35 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:36 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:36 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:37 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:37 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 18:52:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:52:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:52:42 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:52:42 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:52:43 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 18:52:43 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 18:52:43 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 18:52:44 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (22.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.7ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 18:52:44 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:52:44 +0000 Started GET "/countries/1/edit" for 10.0.2.2 at 2014-09-27 18:52:45 +0000 User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#edit as HTML Parameters: {"id"=>"1"} 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 (37.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (188.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (233.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (276.8ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.4ms) Completed 200 OK in 1492ms (Views: 1488.5ms | ActiveRecord: 1.6ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:47 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:47 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:47 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:48 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:48 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:49 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:50 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:51 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:52 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:52 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:53 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:53 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:54 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:54 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:55 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:55 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:58 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 18:52:59 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 18:53:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 18:53:00 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 18:53:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:01 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:02 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 18: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-09-27 18:53:03 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:03 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:04 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:05 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:05 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 18:53:05 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 18:53:05 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 18:53:06 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 18:53:06 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 18:53:06 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 18:53:07 +0000 Started PATCH "/countries/1" for 10.0.2.2 at 2014-09-27 18:53:14 +0000 User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "country"=>{"name"=>"Brazil", "code"=>"BR", "flag"=>#, @original_filename="brasil-flag.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"country[flag]\"; filename=\"brasil-flag.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Atualizar", "id"=>"1"} Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 7ms Paperclip::Error - Country model missing required attr_accessor for 'flag_file_name': paperclip (4.2.0) lib/paperclip/attachment.rb:409:in `block in ensure_required_accessors!' paperclip (4.2.0) lib/paperclip/attachment.rb:407:in `ensure_required_accessors!' paperclip (4.2.0) lib/paperclip/attachment.rb:97:in `assign' paperclip (4.2.0) lib/paperclip/has_attached_file.rb:66:in `block in define_setter' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:45:in `_assign_attribute' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:32:in `block in assign_attributes' activerecord (4.1.5) lib/active_record/attribute_assignment.rb:26:in `assign_attributes' activerecord (4.1.5) lib/active_record/persistence.rb:231:in `block in update' activerecord (4.1.5) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:208:in `transaction' activerecord (4.1.5) lib/active_record/transactions.rb:326:in `with_transaction_returning_status' activerecord (4.1.5) 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:95:in `update' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/94468660/variables" for 10.0.2.2 at 2014-09-27 18:53:15 +0000 ActiveRecord::SchemaMigration Load (7.8ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (8.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddFlagToCountry (20140927184139)  (0.3ms) begin transaction  (0.2ms) rollback transaction  (25.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (0.3ms) select sqlite_version(*)  (25.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (8.8ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePeople (20140906224643)  (0.2ms) begin transaction  (15.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "bio" text, "birthday" date, "created_at" datetime, "updated_at" datetime) SQL (3.8ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140906224643"]]  (11.7ms) commit transaction Migrating to DeviseCreateUsers (20140906224816)  (1.3ms) begin transaction  (16.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 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)  (3.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.8ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index'  (1.4ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") SQL (5.8ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140906224816"]]  (28.9ms) commit transaction Migrating to CreateCkeditorAssets (20140907031459)  (0.4ms) begin transaction  (24.2ms) CREATE TABLE "ckeditor_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "data_file_name" varchar(255) NOT NULL, "data_content_type" varchar(255), "data_file_size" integer, "assetable_id" integer, "assetable_type" varchar(30), "type" varchar(30), "width" integer, "height" integer, "created_at" datetime, "updated_at" datetime)   (2.5ms) CREATE INDEX "idx_ckeditor_assetable_type" ON "ckeditor_assets" ("assetable_type", "type", "assetable_id")  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (1.7ms) CREATE INDEX "idx_ckeditor_assetable" ON "ckeditor_assets" ("assetable_type", "assetable_id") SQL (3.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907031459"]]  (20.3ms) commit transaction Migrating to CreatePhotos (20140907131441)  (0.6ms) begin transaction  (34.5ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image_file_name" varchar(255), "image_content_type" varchar(255), "image_file_size" integer, "image_updated_at" datetime, "title" varchar(255), "person_id" integer, "created_at" datetime, "updated_at" datetime)  (1.1ms) CREATE INDEX "index_photos_on_person_id" ON "photos" ("person_id") SQL (6.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907131441"]]  (22.3ms) commit transaction Migrating to CreateCountries (20140907161617)  (1.0ms) begin transaction  (23.3ms) CREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (14.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161617"]]  (22.7ms) commit transaction Migrating to CreateStates (20140907161629)  (0.8ms) begin transaction  (20.4ms) 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.9ms) CREATE INDEX "index_states_on_country_id" ON "states" ("country_id") SQL (17.8ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161629"]]  (16.8ms) commit transaction Migrating to CreateCities (20140907161640)  (0.3ms) begin transaction  (43.0ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "state_id" integer, "country_id" integer, "created_at" datetime, "updated_at" datetime)  (0.6ms) CREATE INDEX "index_cities_on_state_id" ON "cities" ("state_id")  (0.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.0ms) CREATE INDEX "index_cities_on_country_id" ON "cities" ("country_id") SQL (5.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161640"]]  (20.1ms) commit transaction Migrating to CreateAddressTypes (20140907161809)  (0.3ms) begin transaction  (21.7ms) CREATE TABLE "address_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (4.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161809"]]  (11.4ms) commit transaction Migrating to CreatePhoneTypes (20140907161816)  (0.4ms) begin transaction  (17.8ms) CREATE TABLE "phone_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (5.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161816"]]  (11.5ms) commit transaction Migrating to CreatePhones (20140907161904)  (0.9ms) begin transaction  (24.4ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "phone_type_id" integer, "phoneable_id" integer, "phoneable_type" varchar(255), "created_at" datetime, "updated_at" datetime)   (2.0ms) CREATE INDEX "index_phones_on_phone_type_id" ON "phones" ("phone_type_id") SQL (6.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907161904"]]  (20.5ms) commit transaction Migrating to CreateAddresses (20140907162406)  (0.6ms) begin transaction  (27.4ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address" varchar(255), "number" varchar(255), "complement" varchar(255), "zipcode" varchar(255), "city_id" integer, "state_id" integer, "country_id" integer, "address_type_id" integer, "person_id" integer, "created_at" datetime, "updated_at" datetime)  (3.6ms) CREATE INDEX "index_addresses_on_city_id" ON "addresses" ("city_id")  (0.4ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'  (1.2ms) CREATE INDEX "index_addresses_on_state_id" ON "addresses" ("state_id")  (0.3ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (0.6ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (0.7ms) CREATE INDEX "index_addresses_on_country_id" ON "addresses" ("country_id")  (0.7ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (0.8ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (0.3ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (0.7ms) CREATE INDEX "index_addresses_on_address_type_id" ON "addresses" ("address_type_id")  (0.8ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'   (0.8ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'   (0.8ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'  (0.7ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id") SQL (7.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140907162406"]]  (18.7ms) commit transaction Migrating to AddFlagToCountry (20140927184139)  (0.8ms) begin transaction  (32.7ms) ALTER TABLE "countries" ADD "flag_file_name" varchar(255)  (6.9ms) ALTER TABLE "countries" ADD "flag_content_type" varchar(255)  (2.1ms) ALTER TABLE "countries" ADD "flag_file_size" integer  (1.2ms) ALTER TABLE "countries" ADD "flag_updated_at" datetime SQL (10.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140927184139"]]  (14.3ms) commit transaction ActiveRecord::SchemaMigration Load (8.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (9.1ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_person_id' AND type='index'  (8.1ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'   (7.2ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'  (7.7ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'   (8.9ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'  (7.5ms)  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'   (6.0ms) 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'  (7.6ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'   (7.7ms) SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'  (8.3ms)  SELECT sql FROM sqlite_master WHERE name='index_phones_on_phone_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_phones_on_phone_type_id' AND type='index'   (7.7ms) SELECT sql FROM sqlite_master WHERE name='index_photos_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_photos_on_person_id' AND type='index'  (9.1ms)  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'   (7.4ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index'  (6.9ms)  SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index'  ActiveRecord::SchemaMigration Load (15.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms) begin transaction SQL (40.0ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-27 19:03:29.553194"], ["name", "Current living address"], ["updated_at", "2014-09-27 19:03:29.553194"]]  (25.8ms) commit transaction  (0.2ms) begin transaction SQL (36.4ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-27 19:03:29.729965"], ["name", "Old living address"], ["updated_at", "2014-09-27 19:03:29.729965"]]  (28.8ms) commit transaction  (0.2ms) begin transaction SQL (37.2ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-27 19:03:29.807212"], ["name", "Childhood living address"], ["updated_at", "2014-09-27 19:03:29.807212"]]  (18.1ms) commit transaction  (3.3ms) begin transaction SQL (25.9ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-27 19:03:29.881624"], ["name", "Born address"], ["updated_at", "2014-09-27 19:03:29.881624"]]  (20.1ms) commit transaction  (0.9ms) begin transaction SQL (27.5ms) INSERT INTO "address_types" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-27 19:03:29.935117"], ["name", "Parent's address"], ["updated_at", "2014-09-27 19:03:29.935117"]]  (55.5ms) commit transaction Started GET "/countries/" for 10.0.2.2 at 2014-09-27 19:03:58 +0000 ActiveRecord::SchemaMigration Load (7.2ms) SELECT "schema_migrations".* FROM "schema_migrations" User Load (7.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Started GET "/users/sign_in" for 10.0.2.2 at 2014-09-27 19:04:00 +0000 Processing by Devise::SessionsController#new as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views/devise/shared/_links.erb (5.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views/devise/sessions/new.html.erb within layouts/application (779.6ms) Completed 200 OK in 3030ms (Views: 2862.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-09-27 19:04:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 19:04:08 +0000 Started GET "/assets/turbolinks.js?body=1" for 10.0.2.2 at 2014-09-27 19:04:10 +0000 Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-09-27 19:04:11 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 19:04:12 +0000 Started POST "/users/sign_in" for 10.0.2.2 at 2014-09-27 19:04:33 +0000 Processing by Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} User Load (8.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' ORDER BY "users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 88ms Processing by Devise::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views/devise/shared/_links.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views/devise/sessions/new.html.erb within layouts/application (175.8ms) Completed 200 OK in 2207ms (Views: 1773.6ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 19:04:38 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 19:04:39 +0000 Started POST "/users/sign_in" for 10.0.2.2 at 2014-09-27 19:05:11 +0000 Processing by Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} User Load (7.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' ORDER BY "users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 15ms Processing by Devise::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views/devise/shared/_links.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/devise-3.3.0/app/views/devise/sessions/new.html.erb within layouts/application (169.8ms) Completed 200 OK in 1977ms (Views: 1555.3ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 19:05:16 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 19:05:17 +0000 Started POST "/users/sign_in" for 10.0.2.2 at 2014-09-27 19:06:14 +0000 Processing by Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9LkyArjlsLbu1MP7jcdgn+FI0CTz/4wR6lcsgBWOo0=", "user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} User Load (11.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@vizir.com.br' ORDER BY "users"."id" ASC LIMIT 1  (0.4ms) begin transaction Binary data inserted for `string` type on column `current_sign_in_ip` Binary data inserted for `string` type on column `last_sign_in_ip` SQL (16.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-09-27 19:06:15.857028"], ["current_sign_in_ip", "10.0.2.2"], ["last_sign_in_at", "2014-09-27 19:06:15.857028"], ["last_sign_in_ip", "10.0.2.2"], ["sign_in_count", 1], ["updated_at", "2014-09-27 19:06:15.865279"]]  (22.9ms) commit transaction Redirected to http://127.0.0.1:3021/countries Completed 302 Found in 1138ms (ActiveRecord: 50.4ms) Started GET "/countries" for 10.0.2.2 at 2014-09-27 19:06:16 +0000 User Load (8.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (8.1ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (7.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.5ms) 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (1380.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (10.9ms) Country Load (9.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (23.7ms) CACHE (0.1ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2870.1ms) Rendered carnival/_extra_header.html.haml (12.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (65.2ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (10.0ms) Completed 200 OK in 14183ms (Views: 12755.0ms | ActiveRecord: 28.6ms) Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:35 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:37 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:38 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:40 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:41 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:43 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:44 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:46 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:47 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:48 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:50 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:51 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:53 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:54 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:55 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 19:06:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 19:07:00 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 19:07:01 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 19:07:02 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 19:07:04 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 19:07:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:06 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:08 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:10 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:11 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:16 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:17 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:18 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:23 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:24 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:26 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:28 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:29 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 19:07:31 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 19:07:32 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 19:07:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 19:07:36 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 19:07:38 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 19:07:40 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 19:07:41 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 19:07:42 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (28.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (63.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (412.6ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 19:07:44 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 19:07:46 +0000 Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-09-27 19:07:54 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-27 19:09:09 +0000 User Load (9.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (7.6ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (35.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.0ms) 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.9ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (2282.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.3ms) Country Load (10.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2233.6ms) CACHE (0.1ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (6219.9ms) Rendered carnival/_extra_header.html.haml (3.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (236.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.3ms) Completed 200 OK in 12730ms (Views: 12694.5ms | ActiveRecord: 18.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:25 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:27 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:28 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:30 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:31 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:32 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:34 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:35 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:37 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:38 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:39 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:41 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:42 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:43 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:46 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:49 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:50 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:53 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 19:09:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 19:09:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 19:09:57 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 19:09:58 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:00 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:05 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:06 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:08 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:10 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:13 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:15 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:16 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-27 19:10:17 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 19:10:19 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 19:10:21 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 19:10:22 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 19:10:24 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-27 19:10:25 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-27 19:10:27 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-27 19:10:28 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (19.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (433.7ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-27 19:10:30 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 19:10:32 +0000 Started GET "/countries/1/edit" for 10.0.2.2 at 2014-09-27 19:14:29 +0000 User Load (7.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#edit as HTML Parameters: {"id"=>"1"} Country Load (7.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (135.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (150.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1190.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1510.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1820.3ms) Rendered carnival/_extra_header.html.haml (2.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (31.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.3ms) Completed 200 OK in 8521ms (Views: 8504.7ms | ActiveRecord: 7.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:40 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:42 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:43 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:45 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:46 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:48 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:49 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:50 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:52 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:53 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:54 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:56 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:57 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-27 19:14:58 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-27 19:15:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-27 19:15:01 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-27 19:15:02 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-27 19:15:04 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-27 19:15:05 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-27 19:15:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-27 19:15:08 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-27 19:15:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:11 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:12 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:13 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:16 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:22 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:23 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:28 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:30 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-27 19:15:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-27 19:15:33 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-27 19:15:35 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-27 19:15:37 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-27 19:15:38 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-27 19:15:40 +0000 Started PATCH "/countries/1" for 10.0.2.2 at 2014-09-28 00:29:56 +0000 User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"p8PxcK4r2HT/Nbvq1cLbHs5n6vJKTY9pmqFKjSI0cgQ=", "country"=>{"name"=>"Brasil", "code"=>"BR", "flag"=>#, @original_filename="brasil-flag.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"country[flag]\"; filename=\"brasil-flag.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Atualizar", "id"=>"1"} Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction Command :: file -b --mime '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-qr2x9i.jpg' Command :: identify -format '%wx%h,%[exif:orientation]' '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj.jpg[0]' 2>/dev/null Command :: identify -format %m '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj.jpg[0]' Command :: convert '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj.jpg[0]' -auto-orient -resize "640x480>" '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj20140928-4824-mhvzr0' Command :: file -b --mime '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj20140928-4824-mhvzr0' Command :: identify -format '%wx%h,%[exif:orientation]' '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj.jpg[0]' 2>/dev/null Command :: identify -format %m '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj.jpg[0]' Command :: convert '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj.jpg[0]' -auto-orient -resize "160x120>" '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj20140928-4824-q9wi53' Command :: file -b --mime '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-8vmdhj20140928-4824-q9wi53' Command :: file -b --mime '/tmp/115ef954381ad6dc624bdbb83a47092520140928-4824-2q9zz7.jpg' Binary data inserted for `string` type on column `flag_content_type` SQL (4.7ms) UPDATE "countries" SET "flag_content_type" = ?, "flag_file_name" = ?, "flag_file_size" = ?, "flag_updated_at" = ?, "updated_at" = ? WHERE "countries"."id" = 1 [["flag_content_type", "image/jpeg"], ["flag_file_name", "brasil-flag.jpg"], ["flag_file_size", 43399], ["flag_updated_at", "2014-09-28 00:29:56.994998"], ["updated_at", "2014-09-28 00:29:57.632346"]]  (6.0ms) commit transaction Redirected to http://127.0.0.1:3021/countries Completed 302 Found in 772ms (ActiveRecord: 12.6ms) Started GET "/countries" for 10.0.2.2 at 2014-09-28 00:29:57 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (4.3ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (293.8ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (5.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (596.7ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.3ms) Completed 200 OK in 2065ms (Views: 2049.5ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:00 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:00 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:01 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:01 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:01 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:02 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:02 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:02 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:02 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:03 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:03 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:03 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:03 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:04 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:04 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:04 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:04 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:05 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:05 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:05 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:06 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-28 00:30:06 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:06 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:06 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:07 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:07 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:07 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:07 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:08 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:08 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:08 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:08 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:09 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:09 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:10 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:10 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:10 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-28 00:30:10 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-28 00:30:11 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-28 00:30:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-28 00:30:12 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-28 00:30:12 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-28 00:30:13 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-28 00:30:13 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-28 00:30:13 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (46.5ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-28 00:30:13 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-28 00:30:14 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-28 13:12:42 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" 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) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (306.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/shared/_scope.html.haml (0.1ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (92.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (644.3ms) Rendered carnival/_extra_header.html.haml (1.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2234ms (Views: 1918.6ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:46 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:46 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:46 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:47 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:47 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:48 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:49 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:49 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:49 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:50 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:50 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:51 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:51 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:52 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:53 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:54 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:55 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:57 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:57 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-28 13:12:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-28 13:12:59 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:00 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:01 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:04 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:05 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:05 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:05 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:06 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:06 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:06 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:07 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:07 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-28 13:13:07 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-28 13:13:08 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-28 13:13:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-28 13:13:08 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-28 13:13:09 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-28 13:13:09 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-28 13:13:09 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.7ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-28 13:13:10 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-28 13:13:10 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-28 13:13:10 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-28 13:14:43 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.6ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (262.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/shared/_scope.html.haml (0.1ms) Country Load (2.1ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (6.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (505.7ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2078ms (Views: 2071.0ms | ActiveRecord: 3.7ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:46 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:46 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:46 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:47 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:47 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:47 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:47 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:48 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:48 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:48 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:49 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:49 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:49 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:49 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:50 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:50 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:50 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:51 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:52 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-28 13:14:52 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:52 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:53 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:53 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:53 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:54 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:54 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:55 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:55 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:56 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:56 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:56 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-28 13:14:57 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-28 13:14:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-28 13:14:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-28 13:14:58 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-28 13:14:58 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-28 13:14:59 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-28 13:15:00 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-28 13:15:00 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-28 13:15:01 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-28 13:15:02 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-09-29 16:50:01 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-29 16:50:44 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" 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.5ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (235.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/shared/_scope.html.haml (0.1ms) Country Load (1.8ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (91.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (570.7ms) Rendered carnival/_extra_header.html.haml (1.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (58.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2175ms (Views: 1857.7ms | ActiveRecord: 7.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:48 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:48 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:48 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:49 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:49 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:49 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:49 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:50 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:50 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:50 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:50 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:51 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:51 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:52 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:52 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:53 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:53 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-29 16:50:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:54 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:55 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:56 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:56 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:57 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:57 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:57 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:57 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:58 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-29 16:50:58 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-29 16:50:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-29 16:50:59 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-29 16:50:59 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-29 16:50:59 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-29 16:50:59 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-29 16:51:00 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-29 16:51:00 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-29 16:51:00 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-29 16:51:18 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.1ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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 (251.5ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (125.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (625.2ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (60.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2170ms (Views: 1880.8ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:22 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:22 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:22 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:23 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:23 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:23 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:24 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:24 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:24 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:24 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:25 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:25 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:25 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:25 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:26 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:27 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:27 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-29 16:51:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:28 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:28 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-29 16: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-09-29 16:51:30 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:30 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:30 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:31 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:31 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:32 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:32 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-29 16:51:32 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-29 16:51:32 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-29 16:51:33 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-09-29 16:51:33 +0000 Started GET "/assets/carnival/select2-spinner.gif" for 10.0.2.2 at 2014-09-29 16:52:18 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-29 16:57:27 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.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 (2.0ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (304.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/shared/_scope.html.haml (0.1ms) Country Load (1.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (88.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (641.0ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2173ms (Views: 1879.6ms | ActiveRecord: 5.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:30 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:30 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:31 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:31 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:31 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:31 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:32 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:32 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:32 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:33 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:33 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:33 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:33 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:34 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:34 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:35 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:35 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:35 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-29 16:57:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:36 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:37 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:38 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:38 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:39 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:39 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:40 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:40 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:40 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-29 16:57:40 +0000 Started GET "/1" for 10.0.2.2 at 2014-09-29 16:57:41 +0000 ActionController::RoutingError (No route matches [GET] "/1"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (93.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (168.0ms) Started GET "/Brasil" for 10.0.2.2 at 2014-09-29 16:57:41 +0000 ActionController::RoutingError (No route matches [GET] "/Brasil"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.3ms) Started GET "/BR" for 10.0.2.2 at 2014-09-29 16:57:42 +0000 ActionController::RoutingError (No route matches [GET] "/BR"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.6ms) Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-29 16:57:42 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-29 16:57:42 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-29 16:57:43 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-09-29 16:57:43 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-29 16:57:43 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-29 16:57:43 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-29 16:57:44 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-29 16:57:44 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-29 16:57:44 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-29 16:57:45 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-29 17:03:08 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.0ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (231.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/shared/_scope.html.haml (0.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (90.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (562.6ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (59.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 2194ms (Views: 1902.8ms | ActiveRecord: 5.8ms) Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:12 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:12 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:12 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:13 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:13 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:13 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:13 +0000 Started GET "/assets/carnival/tables.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:14 +0000 Started GET "/assets/carnival/index_grid.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:14 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:14 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:14 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:15 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:15 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:15 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:16 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:16 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:16 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:17 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:17 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:17 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-29 17:03:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:18 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:18 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:19 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:20 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:21 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:21 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:22 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:22 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-29 17:03:22 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-29 17:03:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-29 17:03:23 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-29 17:03:23 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-29 17:03:24 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-29 17:03:24 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-29 17:03:24 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-29 17:03:25 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-09-29 17:03:25 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-29 17:03:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-29 17:03:25 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-29 23:33:05 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.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 (1.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (274.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.2ms) Country Load (1.8ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (102.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (676.2ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 3427ms (Views: 3117.3ms | ActiveRecord: 5.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:10 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:10 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:10 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:11 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:11 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:11 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:11 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:12 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:12 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:12 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:13 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:13 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:13 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:13 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:14 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:14 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:14 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:14 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:15 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:15 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:16 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:16 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:16 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:16 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:17 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:17 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:17 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:18 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-29 23: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-09-29 23:33:19 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:19 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:19 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:20 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:20 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:21 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:21 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-29 23:33:21 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-29 23:33:22 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-29 23:33:22 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-29 23:33:22 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-29 23:33:23 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-29 23:33:23 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-09-29 23:33:23 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-29 23:33:23 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-29 23:33:24 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-29 23:33:24 +0000 Started GET "/countries" for 10.0.2.2 at 2014-09-29 23:33:43 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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) 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.html.haml (257.8ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.9ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (87.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (617.0ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2279ms (Views: 1969.9ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:46 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:47 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:47 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:47 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:48 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:48 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:48 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:48 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:49 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:49 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:49 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:50 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:50 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:50 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:50 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:51 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:52 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:52 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:52 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-29 23:33:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:53 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:54 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:55 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:55 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:56 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:56 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:57 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:57 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-29 23:33:57 +0000 Started GET "/1" for 10.0.2.2 at 2014-09-29 23:33:58 +0000 ActionController::RoutingError (No route matches [GET] "/1"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (91.9ms) Started GET "/Brasil" for 10.0.2.2 at 2014-09-29 23:33:58 +0000 ActionController::RoutingError (No route matches [GET] "/Brasil"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.1ms) Started GET "/BR" for 10.0.2.2 at 2014-09-29 23:33:58 +0000 ActionController::RoutingError (No route matches [GET] "/BR"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.9ms) Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-29 23:33:59 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-29 23:33:59 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-29 23:34:00 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-09-29 23:34:00 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-29 23:34:00 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-29 23:34:00 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-09-29 23:34:01 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-29 23:34:01 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-29 23:34:01 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-29 23:34:01 +0000 Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-09-29 23:54:43 +0000 Started GET "/countries?utf8=%E2%9C%93&scope=&search_term=&advanced_search=%7B%22id%22%3A%7B%22operator%22%3A%22equal%22%2C+%22value%22%3A%221%22%2C+%22type%22%3A%22text%22%7D%7D&date_period_label=&date_period_from=&date_period_to=&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-09-29 23:54:49 +0000 User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"", "search_term"=>"", "advanced_search"=>"{\"id\":{\"operator\":\"equal\", \"value\":\"1\", \"type\":\"text\"}}", "date_period_label"=>"", "date_period_from"=>"", "date_period_to"=>"", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (2.4ms) SELECT COUNT(*) FROM "countries" WHERE (countries.id = '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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (240.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/shared/_scope.html.haml (0.2ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (countries.id = '1') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (5.9ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.id = '1') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (505.9ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1774ms (Views: 1767.1ms | ActiveRecord: 3.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:51 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:51 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:52 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:52 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:52 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:53 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:53 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:53 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:53 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:54 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:54 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:54 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:54 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:55 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:55 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:55 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:55 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:56 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:56 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:57 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:57 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:57 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-29 23:54:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-29 23:54:58 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-29 23:54:58 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-29 23:54:58 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-29 23:54:58 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-29 23:54:59 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-29 23:54:59 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-29 23:54:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-29 23:54:59 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:00 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:00 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:00 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:00 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:01 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:01 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:01 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:01 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:02 +0000 Started GET "/1" for 10.0.2.2 at 2014-09-29 23:55:02 +0000 ActionController::RoutingError (No route matches [GET] "/1"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.4ms) Started GET "/Brasil" for 10.0.2.2 at 2014-09-29 23:55:02 +0000 ActionController::RoutingError (No route matches [GET] "/Brasil"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.2ms) Started GET "/BR" for 10.0.2.2 at 2014-09-29 23:55:03 +0000 ActionController::RoutingError (No route matches [GET] "/BR"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (39.9ms) Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-09-29 23:55:03 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-09-29 23:55:04 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-09-29 23:55:04 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-09-29 23:55:04 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-09-29 23:55:04 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-09-29 23:55:05 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-09-29 23:55:05 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-09-29 23:55:05 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-09-29 23:55:05 +0000 Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-09-29 23:55:07 +0000 Started GET "/countries?utf8=%E2%9C%93&scope=&search_term=&advanced_search=&date_period_label=&date_period_from=&date_period_to=&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-09-29 23:55:08 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"", "search_term"=>"", "advanced_search"=>"", "date_period_label"=>"", "date_period_from"=>"", "date_period_to"=>"", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (1.6ms) SELECT COUNT(*) FROM "countries" 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_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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (288.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/shared/_scope.html.haml (0.1ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (6.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (544.7ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1891ms (Views: 1884.7ms | ActiveRecord: 3.2ms) Started GET "/countries?utf8=%E2%9C%93&scope=&search_term=&advanced_search=%7B%22id%22%3A%7B%22operator%22%3A%22equal%22%2C+%22value%22%3A%221%22%2C+%22type%22%3A%22text%22%7D%7D&date_period_label=&date_period_from=&date_period_to=&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-09-29 23:55:10 +0000 User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"", "search_term"=>"", "advanced_search"=>"{\"id\":{\"operator\":\"equal\", \"value\":\"1\", \"type\":\"text\"}}", "date_period_label"=>"", "date_period_from"=>"", "date_period_to"=>"", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.id = '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 (1.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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (405.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/shared/_scope.html.haml (0.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE (countries.id = '1') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (6.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.id = '1') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (738.3ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2360ms (Views: 2354.0ms | ActiveRecord: 3.5ms) Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:13 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:14 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:14 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:14 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:15 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:15 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:15 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:16 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:16 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:16 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:17 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:17 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:17 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:18 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:18 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:18 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:19 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:20 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-09-29 23:55:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:21 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:21 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:22 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:23 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:23 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:23 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:24 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:24 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:24 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:25 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:25 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-09-29 23:55:25 +0000 Started GET "/1" for 10.0.2.2 at 2014-09-29 23:55:25 +0000 ActionController::RoutingError (No route matches [GET] "/1"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (140.1ms) Started GET "/Brasil" for 10.0.2.2 at 2014-09-29 23:55:26 +0000 ActionController::RoutingError (No route matches [GET] "/Brasil"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.5ms) Started GET "/BR" for 10.0.2.2 at 2014-09-29 23:55:26 +0000 ActionController::RoutingError (No route matches [GET] "/BR"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.1ms) Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-09-29 23:55:27 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-09-30 18:17:59 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (99.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (192.6ms) Started GET "/countries" for 10.0.2.2 at 2014-10-02 00:44:23 +0000 User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.0ms) SELECT COUNT(*) FROM "countries" 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.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.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (359.5ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (94.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (733.4ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2970ms (Views: 2629.1ms | ActiveRecord: 6.3ms) Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:27 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:28 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:28 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:29 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:29 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:30 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:30 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:31 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:31 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:32 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:32 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:32 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:32 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:33 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:33 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:34 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:34 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:35 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:35 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:36 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 00:44:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:36 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:38 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:38 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:39 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:39 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:40 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:40 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:41 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 00:44:41 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 00:44:41 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 00:44:42 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 00:44:42 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 00:44:43 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 00:44:43 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 00:44:43 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 00:44:43 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 00:44:44 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 00:44:44 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 00:45:10 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (242.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/shared/_scope.html.haml (0.1ms) Country Load (2.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (97.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (639.8ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2420ms (Views: 2019.8ms | ActiveRecord: 6.1ms) Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:14 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:14 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:14 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:15 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:15 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:15 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:16 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:16 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:16 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:16 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:17 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:17 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:17 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:18 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:18 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:18 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:19 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:20 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 00:45:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:21 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:21 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 00: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-10-02 00:45:23 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:23 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:24 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:24 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:25 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:25 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:25 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 00:45:26 +0000 Started GET "/BR" for 10.0.2.2 at 2014-10-02 00:45:26 +0000 ActionController::RoutingError (No route matches [GET] "/BR"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.4ms) Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 00:45:26 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (47.1ms) Started GET "/countries" for 10.0.2.2 at 2014-10-02 00:47:13 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (297.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/shared/_scope.html.haml (0.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (133.9ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (685.4ms) Completed 500 Internal Server Error in 1101ms RuntimeError - : () project/app/helpers/carnival/base_admin_helper.rb:156:in `grid_attr' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:9:in `block (2 levels) in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:8:in `block in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' activerecord (4.1.5) lib/active_record/relation/delegation.rb:46:in `each' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:2:in `__project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:54:in `__project_app_views_carnival_base_admin_index_html_haml__532398781_78262160' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/102851130/variables" for 10.0.2.2 at 2014-10-02 00:47:16 +0000 Started POST "/__better_errors/102851130/eval" for 10.0.2.2 at 2014-10-02 00:47:21 +0000 Started POST "/__better_errors/102851130/eval" for 10.0.2.2 at 2014-10-02 00:49:34 +0000 Started POST "/__better_errors/102851130/eval" for 10.0.2.2 at 2014-10-02 00:49:41 +0000 Started POST "/__better_errors/102851130/eval" for 10.0.2.2 at 2014-10-02 00:49:50 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:03:30 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.2ms) 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) 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 (315.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/shared/_scope.html.haml (0.1ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (140.9ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (700.9ms) Completed 500 Internal Server Error in 1151ms RuntimeError - : () project/app/helpers/carnival/base_admin_helper.rb:93:in `field_to_show' () project/app/helpers/carnival/base_admin_helper.rb:154:in `grid_attr' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:9:in `block (2 levels) in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:8:in `block in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' activerecord (4.1.5) lib/active_record/relation/delegation.rb:46:in `each' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:2:in `__project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:54:in `__project_app_views_carnival_base_admin_index_html_haml__532398781_78262160' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-626345968/variables" for 10.0.2.2 at 2014-10-02 01:03:32 +0000 Started POST "/__better_errors/-626345968/eval" for 10.0.2.2 at 2014-10-02 01:03:40 +0000 Started POST "/__better_errors/-626345968/eval" for 10.0.2.2 at 2014-10-02 01:03:52 +0000 Started POST "/__better_errors/-626345968/eval" for 10.0.2.2 at 2014-10-02 01:03:55 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:04:19 +0000 User Load (2.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (275.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/shared/_scope.html.haml (0.1ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (144.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (653.9ms) Completed 500 Internal Server Error in 1163ms NoMethodError - undefined method `html_safe' for nil:NilClass: () project/app/views/carnival/base_admin/_index_as_grid.html.haml:9:in `block (2 levels) in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:8:in `block in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' activerecord (4.1.5) lib/active_record/relation/delegation.rb:46:in `each' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:2:in `__project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:54:in `__project_app_views_carnival_base_admin_index_html_haml__532398781_78262160' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-625964958/variables" for 10.0.2.2 at 2014-10-02 01:04:22 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:05:03 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.2ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (297.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (120.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (652.4ms) Completed 500 Internal Server Error in 1067ms RuntimeError - : () project/app/helpers/carnival/base_admin_helper.rb:93:in `field_to_show' () project/app/helpers/carnival/base_admin_helper.rb:154:in `grid_attr' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:9:in `block (2 levels) in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:8:in `block in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' activerecord (4.1.5) lib/active_record/relation/delegation.rb:46:in `each' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:2:in `__project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:54:in `__project_app_views_carnival_base_admin_index_html_haml__532398781_78262160' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-618343958/variables" for 10.0.2.2 at 2014-10-02 01:05:06 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:05:12 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:05:16 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:05:22 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:05:33 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:05:50 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:05:55 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:06:33 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:07:04 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:08:42 +0000 Started POST "/__better_errors/-618343958/eval" for 10.0.2.2 at 2014-10-02 01:08:48 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:09:10 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 SyntaxError - /project/app/helpers/carnival/base_admin_helper.rb:133: syntax error, unexpected keyword_and, expecting keyword_then or ',' or ';' or '\n' when nil and value.class.to_s == "Paperclip::Attachment" ^: () project/app/helpers/carnival/base_admin_helper.rb:133:in `' activesupport (4.1.5) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.5) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.5) lib/active_support/dependencies.rb:307:in `depend_on' activesupport (4.1.5) lib/active_support/dependencies.rb:225:in `require_dependency' actionpack (4.1.5) lib/abstract_controller/helpers.rb:152:in `block in modules_for_helpers' actionpack (4.1.5) lib/abstract_controller/helpers.rb:147:in `modules_for_helpers' actionpack (4.1.5) lib/action_controller/metal/helpers.rb:93:in `modules_for_helpers' actionpack (4.1.5) lib/abstract_controller/helpers.rb:111:in `helper' actionpack (4.1.5) lib/action_controller/railties/helpers.rb:17:in `inherited' () project/test/carnival-sample-application/app/controllers/application_controller.rb:1:in `' activesupport (4.1.5) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.5) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.5) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.5) lib/active_support/dependencies.rb:180:in `const_missing' inherited_resources (1.5.0) app/controllers/inherited_resources/base.rb:11:in `' inherited_resources (1.5.0) app/controllers/inherited_resources/base.rb:1:in `' activesupport (4.1.5) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.5) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.5) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.5) lib/active_support/dependencies.rb:180:in `const_missing' () project/app/controllers/carnival/base_admin_controller.rb:3:in `' () project/app/controllers/carnival/base_admin_controller.rb:2:in `' activesupport (4.1.5) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.5) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.5) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.5) lib/active_support/dependencies.rb:180:in `const_missing' () project/test/carnival-sample-application/app/controllers/countries_controller.rb:1:in `' activesupport (4.1.5) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.5) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.5) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.5) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.5) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.5) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.5) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.5) lib/active_support/dependencies.rb:552:in `get' activesupport (4.1.5) lib/active_support/dependencies.rb:583:in `constantize' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/104545450/variables" for 10.0.2.2 at 2014-10-02 01:09:11 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:10:00 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" 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.5ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (244.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (192.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (670.7ms) Completed 500 Internal Server Error in 1165ms RuntimeError - : () project/app/helpers/carnival/base_admin_helper.rb:117:in `format_field' () project/app/helpers/carnival/base_admin_helper.rb:97:in `field_to_show' () project/app/helpers/carnival/base_admin_helper.rb:158:in `grid_attr' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:9:in `block (2 levels) in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:8:in `block in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' activerecord (4.1.5) lib/active_record/relation/delegation.rb:46:in `each' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:2:in `__project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:54:in `__project_app_views_carnival_base_admin_index_html_haml__532398781_78262160' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/94627640/variables" for 10.0.2.2 at 2014-10-02 01:10:02 +0000 Started POST "/__better_errors/94627640/eval" for 10.0.2.2 at 2014-10-02 01:10:22 +0000 Started POST "/__better_errors/94627640/eval" for 10.0.2.2 at 2014-10-02 01:10:28 +0000 Started POST "/__better_errors/94627640/eval" for 10.0.2.2 at 2014-10-02 01:11:27 +0000 Started POST "/__better_errors/94627640/eval" for 10.0.2.2 at 2014-10-02 01:11:30 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:12:14 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (285.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (145.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (708.8ms) Completed 500 Internal Server Error in 1131ms RuntimeError - : () project/app/helpers/carnival/base_admin_helper.rb:121:in `format_field' () project/app/helpers/carnival/base_admin_helper.rb:97:in `field_to_show' () project/app/helpers/carnival/base_admin_helper.rb:162:in `grid_attr' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:9:in `block (2 levels) in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:8:in `block in __project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' activerecord (4.1.5) lib/active_record/relation/delegation.rb:46:in `each' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:2:in `__project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__625980578' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:54:in `__project_app_views_carnival_base_admin_index_html_haml__532398781_78262160' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-618362408/variables" for 10.0.2.2 at 2014-10-02 01:12:16 +0000 Started POST "/__better_errors/-618362408/eval" for 10.0.2.2 at 2014-10-02 01:13:19 +0000 Started POST "/__better_errors/-618362408/eval" for 10.0.2.2 at 2014-10-02 01:13:30 +0000 Started POST "/__better_errors/-618362408/eval" for 10.0.2.2 at 2014-10-02 01:13:55 +0000 Started POST "/__better_errors/-618362408/eval" for 10.0.2.2 at 2014-10-02 01:14:04 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:15:18 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" 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) 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 (235.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/shared/_scope.html.haml (0.1ms) Country Load (1.8ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (79.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (552.9ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (73.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 2239ms (Views: 1874.2ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:21 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:22 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:22 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:22 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:22 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:23 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:23 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:23 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:24 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:24 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:24 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:24 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:25 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:25 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:25 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:25 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:26 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:27 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:27 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:29 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:30 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:30 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:30 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:32 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:32 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:32 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:33 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:33 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:33 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:34 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:15:34 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:15:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:15:35 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:15:35 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:15:35 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:15:36 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:15:36 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:15:36 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.7ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:15:36 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:15:37 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:46 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:47 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:47 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:47 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:48 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:48 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:49 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:49 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:49 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:49 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:50 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:50 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:50 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:51 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:51 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:51 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:53 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:53 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:54 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:15:54 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:16:09 +0000 User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.0ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (246.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/shared/_scope.html.haml (0.1ms) Country Load (2.1ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (9.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (508.4ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (63.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1844ms (Views: 1836.7ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:12 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:12 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:13 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:13 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:13 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:14 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:14 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:14 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:14 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:15 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:15 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:15 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:15 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:16 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:16 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:16 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:17 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:18 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:18 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:16:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:19 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:19 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:21 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:21 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:22 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:22 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:22 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:23 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:16:23 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:16:23 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (46.6ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:16:35 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:25 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:26 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:26 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:26 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:27 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:27 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:27 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:28 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:28 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:29 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:30 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:31 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:31 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:32 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:33 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:34 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:34 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:34 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:35 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:17:35 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:18:19 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (239.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/shared/_scope.html.haml (0.1ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (6.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (490.6ms) Rendered carnival/_extra_header.html.haml (0.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2078ms (Views: 2072.4ms | ActiveRecord: 3.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:22 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:22 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:22 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:23 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:23 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:23 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:23 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:24 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:24 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:24 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:25 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:25 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:25 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:25 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:26 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:26 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:27 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:27 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:27 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:28 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:18:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:29 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:29 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:30 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:30 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:30 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:31 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:31 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:32 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:32 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:32 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:32 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:33 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:18:33 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:18:34 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (47.6ms) Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:23:12 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.0ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (225.9ms) 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/shared/_scope.html.haml (0.2ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (5.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (476.5ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1831ms (Views: 1824.4ms | ActiveRecord: 3.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:15 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:15 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:15 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:15 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:16 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:16 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:16 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:16 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:17 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:17 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:17 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:17 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:18 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:18 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:18 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:19 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:20 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:20 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:21 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:21 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:23 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:24 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:25 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:25 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:26 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:27 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:27 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:23:28 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:23:28 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:23:29 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:23:29 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:23:30 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:23:30 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:23:30 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (44.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:23:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:23:31 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:23:42 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.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 (1.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (249.7ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (6.3ms) CACHE (0.2ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (499.6ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 1815ms (Views: 1808.7ms | ActiveRecord: 3.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:44 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:44 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:45 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:45 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:45 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:45 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:46 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:46 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:46 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:47 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:47 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:47 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:47 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:48 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:48 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:48 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:49 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:49 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:49 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:49 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:50 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:50 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:23:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:51 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:51 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:51 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:53 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:53 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:53 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:54 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:54 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:54 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:55 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:23:55 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:23:55 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.5ms) Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:24:11 +0000 User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" 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_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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (241.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/shared/_scope.html.haml (0.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (6.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (496.2ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (65.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1799ms (Views: 1793.3ms | ActiveRecord: 3.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:13 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:14 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:14 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:14 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:14 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:15 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:15 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:15 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:15 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:16 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:16 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:16 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:16 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:17 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:17 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:17 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:18 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:19 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:24:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:20 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:20 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:22 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:22 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:22 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:23 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:23 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:23 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:24 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:24:24 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:24:24 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.9ms) Started GET "/countries?utf8=%E2%9C%93&scope=&search_term=&advanced_search=&date_period_label=&date_period_from=&date_period_to=&sort_column=flag&sort_direction=asc&page=1" for 10.0.2.2 at 2014-10-02 01:25:29 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"", "search_term"=>"", "advanced_search"=>"", "date_period_label"=>"", "date_period_from"=>"", "date_period_to"=>"", "sort_column"=>"flag", "sort_direction"=>"asc", "page"=>"1"}  (1.9ms) SELECT COUNT(*) FROM "countries" 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.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.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (327.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/shared/_scope.html.haml (0.1ms) Country Load (2.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.flag asc LIMIT 50 OFFSET 0 SQLite3::SQLException: no such column: countries.flag: SELECT "countries".* FROM "countries" ORDER BY countries.flag asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (45.9ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (629.7ms) Completed 500 Internal Server Error in 780ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: countries.flag: SELECT "countries".* FROM "countries" ORDER BY countries.flag asc LIMIT 50 OFFSET 0: activerecord (4.1.5) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.5) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.5) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.5) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.5) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.5) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.5) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.5) lib/active_record/relation.rb:486:in `load' activerecord (4.1.5) 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.5) lib/active_record/relation/delegation.rb:46:in `each' () project/app/views/carnival/base_admin/_index_as_grid.html.haml:2:in `__project_app_views_carnival_base_admin__index_as_grid_html_haml__488217949__622173328' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.5) 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/index.html.haml:56:in `__project_app_views_carnival_base_admin_index_html_haml__532398781_94721750' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/96380950/variables" for 10.0.2.2 at 2014-10-02 01:25:31 +0000 Country Load (3.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.flag asc LIMIT 50 OFFSET 0 SQLite3::SQLException: no such column: countries.flag: SELECT "countries".* FROM "countries" ORDER BY countries.flag asc LIMIT 50 OFFSET 0 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:30:16 +0000 User Load (5.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.2ms) SELECT COUNT(*) FROM "countries" 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) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (250.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/shared/_scope.html.haml (0.2ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (6.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (515.1ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2050ms (Views: 2043.4ms | ActiveRecord: 3.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:19 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:19 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:19 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:20 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:20 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:20 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:21 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:21 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:21 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:21 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:22 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:22 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:22 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:22 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:23 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:23 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:23 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:24 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:24 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:24 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:24 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:25 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:25 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:30:25 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:26 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:26 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:26 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:26 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:27 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:27 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:28 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:28 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:28 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:29 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:29 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:30 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:30 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:30:30 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:30:31 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.5ms) Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:30:56 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (317.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/shared/_scope.html.haml (0.5ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (91.9ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (639.4ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2217ms (Views: 1912.6ms | ActiveRecord: 5.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:00 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:00 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:00 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:00 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:01 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:01 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:01 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:02 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:02 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:02 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:02 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:03 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:03 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:03 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:04 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:04 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:04 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:04 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:05 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:05 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:05 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:06 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:31:06 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:06 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:07 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:07 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:07 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:08 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:08 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:08 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:09 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:09 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:09 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:10 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:10 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:10 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:31:11 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:31:11 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.8ms) Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:32:06 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (330.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/shared/_scope.html.haml (0.1ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (5.9ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (593.1ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 2119ms (Views: 2112.6ms | ActiveRecord: 3.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:08 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:09 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:09 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:09 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:10 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:10 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:10 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:10 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:11 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:11 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:11 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:12 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:12 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:12 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:12 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:13 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:13 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:13 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:14 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:14 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:14 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:15 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:32:15 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:15 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:16 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:16 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:16 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:17 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:17 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:17 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:17 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:18 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:18 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:18 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:19 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:19 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:19 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:19 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:32:20 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:32:20 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (51.3ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:32:24 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:33:23 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.0ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) 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 (273.2ms) 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/shared/_scope.html.haml (0.1ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (6.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (542.4ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (63.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2113ms (Views: 2106.0ms | ActiveRecord: 3.6ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:26 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:26 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:26 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:26 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:27 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:27 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:27 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:28 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:28 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:28 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:28 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:29 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:29 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:29 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:29 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:30 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:30 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:31 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:31 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:32 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:33:32 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:32 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:32 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:33 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:33 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:34 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01: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-10-02 01:33:34 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:35 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:35 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:35 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:36 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:36 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:37 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:33:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:33:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:33:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:33:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:33:40 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:33:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:33:40 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:33:41 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (42.9ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:33:41 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:33:41 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:34:24 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (350.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (6.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (622.6ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2206ms (Views: 2200.6ms | ActiveRecord: 3.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:27 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:27 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:27 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:28 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:28 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:28 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:29 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:29 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:29 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:29 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:30 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:30 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:30 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:30 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:31 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:31 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:32 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:32 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:32 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:33 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:34 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:34 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:35 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:36 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:36 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:36 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:37 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:37 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:37 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:34:38 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:34:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:34:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:34:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:34:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:34:40 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:34:40 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:34:41 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.5ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:34:41 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:34:42 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:34:50 +0000 User Load (3.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" 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.5ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (293.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/shared/_scope.html.haml (0.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (87.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (684.0ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2368ms (Views: 1979.3ms | ActiveRecord: 5.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:54 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:54 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:54 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:54 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:55 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:55 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:55 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:56 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:56 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:56 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:56 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:57 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:57 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:57 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:57 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:58 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:59 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:59 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:34:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:35:00 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:35:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:00 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:01 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01: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-10-02 01:35:02 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:02 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:03 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:04 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:04 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:04 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:35:04 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:35:05 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:35:05 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:35:05 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:35:06 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:35:06 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:35:07 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:35:07 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:35:07 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.4ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:35:08 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:37:57 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (3.3ms) SELECT COUNT(*) FROM "countries" 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) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (315.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (84.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (633.0ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (68.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2223ms (Views: 1925.7ms | ActiveRecord: 7.0ms) Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:00 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:01 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:01 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:01 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:02 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:02 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:02 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:02 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:03 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:03 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:03 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:03 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:04 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:04 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:04 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:04 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:05 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:05 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:05 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:06 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:06 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:06 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:38:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:07 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:07 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:07 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:08 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:08 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:09 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01: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-10-02 01:38:09 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:09 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:10 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:10 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:10 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:10 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:11 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:38:11 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:38:12 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:38:12 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:38:12 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:38:13 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:38:13 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:38:14 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:38:14 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:38:14 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:38:15 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:39:44 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" 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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (307.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (5.9ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (552.4ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2087ms (Views: 2080.9ms | ActiveRecord: 3.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:46 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:47 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:47 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:47 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:47 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:48 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:48 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:48 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:49 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:49 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:49 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:49 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:50 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:50 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:50 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:50 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:51 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:52 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:52 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:39:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:53 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:53 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:55 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:56 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:56 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:57 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:57 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:39:57 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:39:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:39:58 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:39:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:39:59 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:39:59 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:40:00 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:40:00 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:40:00 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:40:00 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:40:24 +0000 User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (235.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/shared/_scope.html.haml (0.1ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (74.9ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (542.4ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2182ms (Views: 1814.5ms | ActiveRecord: 6.2ms) Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:27 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:27 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:28 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:28 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:28 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:29 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:29 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:29 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:29 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:30 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:30 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:30 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:30 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:31 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:31 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:31 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:32 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:32 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:33 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:33 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:40:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:34 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:34 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01: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-10-02 01:40:36 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:36 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:37 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:37 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:37 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:38 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:40:38 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:40:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:40:39 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:40:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:40:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:40:40 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:40:40 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:40:40 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (44.9ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:40:41 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:40:41 +0000 Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-10-02 01:40:44 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:41:08 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.0ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (345.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/shared/_scope.html.haml (0.1ms) Country Load (1.9ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (5.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (614.8ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2119ms (Views: 2112.2ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:11 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:12 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:12 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:12 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:12 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:13 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:13 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:13 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:13 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:14 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:14 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:14 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:15 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:15 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:15 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:15 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:16 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:16 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:17 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:17 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:17 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:18 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:18 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:19 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01: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-10-02 01:41:20 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:21 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:21 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:21 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:22 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:22 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:41:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:41:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:41:23 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:41:24 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:41:24 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:41:24 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:41:25 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (14.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (87.3ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:41:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:41:26 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:41:48 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.6ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.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 (0.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (231.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (5.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (467.0ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (66.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2071ms (Views: 2064.7ms | ActiveRecord: 3.0ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:51 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:51 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:51 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:51 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:52 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:52 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:53 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:53 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:53 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:53 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:54 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:54 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:54 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:54 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:55 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:55 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:55 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:55 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:56 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:56 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:56 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:56 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:41:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:57 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:57 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:58 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:58 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:58 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:58 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:59 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:59 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:41:59 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:42:00 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:42:00 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:42:00 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:42:01 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:42:01 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:42:01 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:42:01 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:42:02 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:42:02 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:42:02 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:42:03 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:42:03 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:42:04 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:42:04 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.9ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:42:04 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:42:05 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:43:13 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (304.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/shared/_scope.html.haml (0.1ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (5.3ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (562.2ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2046ms (Views: 2039.8ms | ActiveRecord: 3.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:16 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:16 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:17 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:17 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:17 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:17 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:18 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:18 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:18 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:18 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:19 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:19 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:19 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:20 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:20 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:20 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:21 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:21 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:22 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:23 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:23 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:25 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:25 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:26 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:27 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:27 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:27 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:43:28 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:43:28 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:43:28 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:43:29 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:43:29 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:43:29 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:43:30 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (42.6ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:43:30 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:43:30 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:43:40 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (245.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/shared/_scope.html.haml (0.1ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (90.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (568.7ms) Rendered carnival/_extra_header.html.haml (0.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2201ms (Views: 1844.7ms | ActiveRecord: 5.3ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:44 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:44 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:44 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:44 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:45 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:45 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:45 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:46 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:46 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:46 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:46 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:47 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:47 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:47 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:47 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:48 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:49 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:49 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:49 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:50 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:43:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:50 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:51 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:52 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:53 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:53 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:54 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:54 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:54 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:43:55 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:43:55 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:43:55 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:43:56 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:43:56 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:43:56 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 01:43:57 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:43:57 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.5ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:43:57 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:43:58 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:43:58 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:44:03 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.1ms) SELECT COUNT(*) FROM "countries" 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (232.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/shared/_scope.html.haml (0.1ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_list.html.haml (135.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (617.3ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2128ms (Views: 1840.8ms | ActiveRecord: 5.2ms) Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:06 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:07 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:07 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:07 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:07 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:08 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:08 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:08 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:08 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:09 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:09 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:09 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:09 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:10 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:10 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:10 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:11 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:12 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:12 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:13 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:13 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01: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-10-02 01:44:15 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:15 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:16 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:17 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:17 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:17 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:44:18 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:44:19 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:44:19 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:44:19 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:44:20 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 01:44:20 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:44:20 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (44.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:44:21 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:44:21 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:44:21 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:44:22 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" 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.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (234.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/shared/_scope.html.haml (0.1ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (94.4ms) CACHE (0.2ms) SELECT COUNT(*) FROM "countries" Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (566.8ms) Rendered carnival/_extra_header.html.haml (0.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2169ms (Views: 1865.1ms | ActiveRecord: 5.3ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:25 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:25 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:26 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:26 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:26 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:26 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:27 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:27 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:27 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:27 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:28 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:28 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:28 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:28 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:29 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:29 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:30 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:30 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:30 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:31 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:44:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:32 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:32 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:33 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01: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-10-02 01:44:34 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:34 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:34 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:35 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:35 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:36 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:44:36 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:44:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:44:36 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:44:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:44:37 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:44:38 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 01:44:38 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:44:38 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.6ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:44:39 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:44:39 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:44:39 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:55:42 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_field.html.haml (0.4ms) 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.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (258.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (122.3ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.6ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.3ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.9ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (632.8ms) Completed 500 Internal Server Error in 1122ms Haml::Error - Invalid filter name ":: test".: haml (4.0.5) lib/haml/parser.rb:435:in `filter' haml (4.0.5) lib/haml/parser.rb:226:in `process_line' haml (4.0.5) lib/haml/parser.rb:121:in `parse' haml (4.0.5) lib/haml/engine.rb:66:in `initialize' haml (4.0.5) lib/haml/template/plugin.rb:25:in `compile' haml (4.0.5) lib/haml/template/plugin.rb:30:in `call' actionview (4.1.5) lib/action_view/template.rb:270:in `compile' actionview (4.1.5) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:244:in `block in compile!' actionview (4.1.5) lib/action_view/template.rb:232:in `compile!' actionview (4.1.5) lib/action_view/template.rb:144:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-618978768/variables" for 10.0.2.2 at 2014-10-02 01:55:44 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:56:08 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.6ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (242.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (53.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.1ms) Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (532.4ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1908ms (Views: 1899.0ms | ActiveRecord: 4.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:11 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:11 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:11 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:11 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:12 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:12 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:12 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:13 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:13 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:13 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:13 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:14 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:14 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:14 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:14 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:15 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:15 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:15 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:16 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:16 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:16 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:16 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:17 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:56:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:17 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:17 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:18 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:19 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:19 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:20 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:21 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:21 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:21 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:56:22 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:56:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:56:22 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:56:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:56:23 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:56:23 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 01:56:24 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:56:24 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.2ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:56:24 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:56:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:56:25 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 01:57:47 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (239.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (44.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.6ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (3.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (530.8ms) Rendered carnival/_extra_header.html.haml (1.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1828ms (Views: 1819.2ms | ActiveRecord: 5.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:49 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:50 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:50 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:50 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:51 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:51 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:51 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:51 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:52 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:52 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:52 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:53 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:53 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:53 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:53 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:54 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:54 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:55 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:55 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:56 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 01:57:56 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:56 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:57 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:57 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:58 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:58 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:58 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:59 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:59 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:59 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 01:57:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 01:58:00 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 01:58:00 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 01:58:00 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 01:58:01 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 01:58:01 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 01:58:01 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 01:58:02 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 01:58:02 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 01:58:02 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 01:58:03 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 01:58:03 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 01:58:03 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (73.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 01:58:04 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 01:58:04 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:00:40 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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.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.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (233.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (40.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.1ms) Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (3.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (535.8ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2115ms (Views: 2105.4ms | ActiveRecord: 5.4ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:42 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:43 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:43 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:43 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:44 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:44 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:44 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:45 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:45 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:45 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:45 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:46 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:46 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:46 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:47 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:47 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:47 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:48 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:48 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:49 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:49 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:00:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:50 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:50 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:51 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02: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-10-02 02:00:52 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:52 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:53 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:54 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:54 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:54 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:00:54 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:00:55 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:00:55 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:00:55 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:00:56 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:00:56 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:00:57 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:00:57 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.4ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:00:57 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:00:58 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:00:58 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:08:13 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.4ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_field.html.haml (0.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.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (335.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (41.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.3ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (633.4ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2245ms (Views: 1943.8ms | ActiveRecord: 7.6ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:17 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:17 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:17 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:18 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:18 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:18 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:19 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:19 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:19 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:19 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:20 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:20 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:20 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:21 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:21 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:21 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:22 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:23 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:23 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:08:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:24 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:24 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:26 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:26 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:26 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:27 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:27 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:28 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:28 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:08:28 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:08:28 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:08:29 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:08:29 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:08:30 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:08:30 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:08:30 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:08:31 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.2ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:08:31 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:08:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:08:31 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:09:26 +0000 User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.2ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_field.html.haml (0.3ms) 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 (233.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (40.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.7ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.0ms) Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (533.1ms) Rendered carnival/_extra_header.html.haml (0.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1906ms (Views: 1897.3ms | ActiveRecord: 5.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:28 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:29 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:29 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:29 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:29 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:30 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:30 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:30 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:31 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:31 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:31 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:31 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:32 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:32 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:32 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:33 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:34 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:34 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:34 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:34 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:35 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:35 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:35 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:36 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:36 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:36 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:37 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:37 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:38 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:38 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:39 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:39 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:39 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:09:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:09:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:09:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:09:41 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:09:41 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:09:41 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:09:42 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:09:42 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (42.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:09:42 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:09:43 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:09:43 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:09:55 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_field.html.haml (0.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (228.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (42.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.1ms) Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.3ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (529.3ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1840ms (Views: 1831.5ms | ActiveRecord: 4.5ms) Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:58 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:58 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:58 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:59 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:59 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:59 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:09:59 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:00 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:00 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:00 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:00 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:01 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:01 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:01 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:02 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:02 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:02 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:02 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:03 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:03 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:03 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:04 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:04 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:10:04 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:05 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:05 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:05 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:06 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:06 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:06 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:06 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:07 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:07 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:07 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:08 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:08 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:08 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:09 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:09 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:09 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:10:10 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:10:10 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:10:10 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:10:11 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:10:11 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:10:11 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:10:12 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:10:12 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:10:12 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:10:13 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:10:13 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:30:03 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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.7ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (261.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (58.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (62.7ms) Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (3.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (680.1ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2033ms (Views: 2023.7ms | ActiveRecord: 5.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:06 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:06 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:07 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:07 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:07 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:08 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:08 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:08 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:08 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:09 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:09 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:09 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:10 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:10 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:10 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:11 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:12 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:12 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:13 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:30:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:13 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:14 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:15 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:16 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:16 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:17 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:17 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:17 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:30:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:30:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:30:19 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:30:19 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:30:19 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:30:20 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:30:20 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:30:20 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.9ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:30:21 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:30:21 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:30:22 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:33:09 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.1ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (262.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (51.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.5ms) Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (3.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (594.2ms) Rendered carnival/_extra_header.html.haml (0.7ms) Completed 500 Internal Server Error in 2297ms RuntimeError - : () project/app/helpers/carnival/base_admin_helper.rb:14:in `block (2 levels) in page_title' () project/app/helpers/carnival/base_admin_helper.rb:12:in `block in page_title' () project/app/helpers/carnival/base_admin_helper.rb:10:in `page_title' () project/app/views/layouts/carnival/admin.html.haml:27:in `__project_app_views_layouts_carnival_admin_html_haml___587302783_107455220' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/104156460/variables" for 10.0.2.2 at 2014-10-02 02:33:13 +0000 Started POST "/__better_errors/104156460/eval" for 10.0.2.2 at 2014-10-02 02:33:24 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:33:44 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (274.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (104.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (3.1ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (3.0ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (653.3ms) Rendered carnival/_extra_header.html.haml (0.7ms) Completed 500 Internal Server Error in 2360ms RuntimeError - : () project/app/helpers/carnival/base_admin_helper.rb:14:in `block (2 levels) in page_title' () project/app/helpers/carnival/base_admin_helper.rb:12:in `block in page_title' () project/app/helpers/carnival/base_admin_helper.rb:10:in `page_title' () project/app/views/layouts/carnival/admin.html.haml:27:in `__project_app_views_layouts_carnival_admin_html_haml___587302783_107455220' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/108672050/variables" for 10.0.2.2 at 2014-10-02 02:33:48 +0000 Started POST "/__better_errors/108672050/eval" for 10.0.2.2 at 2014-10-02 02:33:58 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:35:51 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.2ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_field.html.haml (0.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (315.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (55.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.9ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (3.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (679.8ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (69.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2454ms (Views: 2092.9ms | ActiveRecord: 7.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:55 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:55 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:56 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:56 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:56 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:56 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:57 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:57 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:57 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:58 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:58 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:58 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:58 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:59 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:59 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:35:59 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:36:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:36:00 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:36:00 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:36:00 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:36:01 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:36:01 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:36:01 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:36:02 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:02 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:02 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:02 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:03 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:03 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:04 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:04 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:04 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:05 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:05 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:06 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:06 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:06 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:36:07 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:36:07 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:36:07 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:36:08 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:36:08 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:36:09 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:36:09 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:36:09 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:36:10 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:36:10 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:36:10 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:36:52 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.7ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (325.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (42.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.9ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.2ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (624.9ms) Completed 500 Internal Server Error in 753ms Haml::Error - Invalid filter name "::".: haml (4.0.5) lib/haml/parser.rb:435:in `filter' haml (4.0.5) lib/haml/parser.rb:226:in `process_line' haml (4.0.5) lib/haml/parser.rb:121:in `parse' haml (4.0.5) lib/haml/engine.rb:66:in `initialize' haml (4.0.5) lib/haml/template/plugin.rb:25:in `compile' haml (4.0.5) lib/haml/template/plugin.rb:30:in `call' actionview (4.1.5) lib/action_view/template.rb:270:in `compile' actionview (4.1.5) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:244:in `block in compile!' actionview (4.1.5) lib/action_view/template.rb:232:in `compile!' actionview (4.1.5) lib/action_view/template.rb:144:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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:39:in `block (2 levels) in index' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.5) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' () project/app/controllers/carnival/base_admin_controller.rb:33:in `index' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-622182368/variables" for 10.0.2.2 at 2014-10-02 02:36:54 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:37:17 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (258.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (44.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.7ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.1ms) Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (3.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (584.8ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1953ms (Views: 1943.0ms | ActiveRecord: 5.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:20 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:20 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:21 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:21 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:21 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:21 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:22 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:22 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:22 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:23 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:23 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:23 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:23 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:24 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:24 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:24 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:25 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:26 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:26 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:26 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:26 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:27 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:27 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:27 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:28 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:28 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:29 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:30 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:30 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:30 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:31 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:31 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:31 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:32 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:37:32 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:37:32 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:37:33 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:37:33 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:37:34 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:37:34 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:37:34 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:37:35 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:37:35 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:37:35 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:37:46 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (2.3ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_field.html.haml (0.4ms) 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) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (249.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (45.5ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.7ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (3.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (584.3ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1948ms (Views: 1938.3ms | ActiveRecord: 5.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:49 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:49 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:50 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:50 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:50 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:51 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:51 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:51 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:51 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:52 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:52 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:52 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:53 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:53 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:53 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:53 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:54 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:55 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:55 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:55 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:37:56 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:56 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:57 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:57 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:58 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:58 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:58 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:59 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:59 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:59 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:37:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:00 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:00 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:00 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:01 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:38:01 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:38:01 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:38:02 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:38:02 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:38:03 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:38:03 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:38:03 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.7ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:38:04 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:38:04 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:38:04 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:38:09 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.5ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (315.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (47.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.7ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.3ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.7ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (626.3ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2034ms (Views: 2024.6ms | ActiveRecord: 4.6ms) Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:12 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:12 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:12 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:13 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:13 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:13 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:13 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:14 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:14 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:14 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:15 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:15 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:15 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:15 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:16 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:17 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:17 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:18 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:19 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:19 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:21 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:21 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:22 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:23 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:23 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:23 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:24 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:38:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:38:24 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:38:25 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:38:25 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:38:26 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:38:26 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:38:26 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (42.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:38:27 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:38:27 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:38:27 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 02:38:35 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (348.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (44.9ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.8ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (663.8ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2325ms (Views: 1995.6ms | ActiveRecord: 7.1ms) Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:39 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:40 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:40 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:40 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:40 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:41 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:41 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:41 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:42 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:42 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:42 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:43 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:43 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:43 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:43 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:44 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:44 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:45 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:45 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:45 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:46 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 02:38:46 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:47 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:47 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:49 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:49 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:49 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:50 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:50 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:51 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 02:38:51 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 02:38:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 02:38:52 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 02:38:52 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 02:38:53 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 02:38:53 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 02:38:53 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 02:38:54 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (20.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 02:38:54 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 02:38:54 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 02:38:55 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 03:10:57 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (1.9ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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_field.html.haml (0.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.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (361.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (46.3ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.6ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.7ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (773.6ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (14.2ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2786ms (Views: 2449.8ms | ActiveRecord: 6.9ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:01 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:01 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:01 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:01 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:02 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:02 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:02 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:03 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:03 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:03 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:04 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:04 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:04 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:05 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:05 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:05 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:05 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:06 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:06 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:07 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:07 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 03:11:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:08 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:08 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:09 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:10 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:10 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:11 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:11 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:12 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:12 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:12 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 03:11:13 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 03:11:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 03:11:14 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 03:11:14 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 03:11:15 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 03:11:15 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 03:11:16 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 03:11:16 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (51.9ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 03:11:16 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 03:11:17 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 03:11:17 +0000 Started GET "/countries" for 10.0.2.2 at 2014-10-02 03:12:22 +0000 User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML  (8.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') 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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (247.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (42.6ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59')  (1.8ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.2ms) Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-10-02 00:00:00' and '2014-10-02 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (561.6ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (70.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 2219ms (Views: 2200.9ms | ActiveRecord: 11.2ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:26 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:26 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:26 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:27 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:27 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:27 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:28 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:28 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:28 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:28 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:29 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:29 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:29 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:30 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:30 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:31 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:31 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:32 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:32 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 03:12:32 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:33 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:33 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:34 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:34 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 03: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-10-02 03:12:35 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:35 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:36 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:36 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:37 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:37 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 03:12:37 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 03:12:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 03:12:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 03:12:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 03:12:39 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 03:12:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 03:12:40 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-10-02 03:12:40 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 03:12:41 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.2ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 03:12:41 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 03:12:41 +0000 Started GET "/assets/carnival/search-button.png" for 10.0.2.2 at 2014-10-02 03:14:18 +0000 Started GET "/countries?utf8=%E2%9C%93&scope=all&search_term=&advanced_search=&date_period_label=Este+ano&date_period_from=2014-01-01&date_period_to=2014-12-31&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-10-02 03:14:21 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"all", "search_term"=>"", "advanced_search"=>"", "date_period_label"=>"Este ano", "date_period_from"=>"2014-01-01", "date_period_to"=>"2014-12-31", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (2.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') 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) 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.html.haml (271.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (45.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59')  (1.9ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.8ms) Country Load (2.6ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."country_id" IN (1) Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (228.9ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (838.7ms) Rendered carnival/_extra_header.html.haml (1.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2241ms (Views: 2225.6ms | ActiveRecord: 10.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:24 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:25 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:25 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:25 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:26 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:26 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:26 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:26 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:27 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:27 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:27 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:28 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:28 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:28 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:29 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:29 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:30 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:30 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:31 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 03:14:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:32 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:32 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:33 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:34 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:34 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:35 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:35 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:36 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:36 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 03:14:36 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 03:14:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 03:14:37 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 03:14:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 03:14:38 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 03:14:38 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 03:14:39 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 03:14:39 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.9ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 03:14:40 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 03:14:40 +0000 Started GET "/countries?utf8=%E2%9C%93&scope=all&search_term=&advanced_search=&date_period_label=Este+ano&date_period_from=2014-01-01&date_period_to=2014-12-31&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-10-02 03:15:42 +0000 User Load (3.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"all", "search_term"=>"", "advanced_search"=>"", "date_period_label"=>"Este ano", "date_period_from"=>"2014-01-01", "date_period_to"=>"2014-12-31", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (2.2ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') 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_field.html.haml (0.4ms) 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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (417.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (44.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59')  (1.6ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.0ms) Country Load (2.3ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."country_id" IN (1) Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (13.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (856.8ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 2799ms (Views: 2786.8ms | ActiveRecord: 7.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:46 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:46 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:47 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:47 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:47 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:48 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:48 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:48 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:49 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:49 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:49 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:49 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:50 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:50 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:51 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:52 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:52 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:52 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:53 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 03:15:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:54 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:54 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:56 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:57 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:57 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:57 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:58 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:58 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:58 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 03:15:58 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 03:15:59 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 03:15:59 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 03:16:00 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 03:16:00 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 03:16:00 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 03:16:01 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 03:16:01 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.9ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 03:16:02 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 03:16:02 +0000 Started GET "/countries?utf8=%E2%9C%93&scope=all&search_term=&advanced_search=&date_period_label=Este+ano&date_period_from=2014-01-01&date_period_to=2014-12-31&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-10-02 03:16:26 +0000 User Load (9.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"all", "search_term"=>"", "advanced_search"=>"", "date_period_label"=>"Este ano", "date_period_from"=>"2014-01-01", "date_period_to"=>"2014-12-31", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (4.9ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') 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_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 (327.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (72.3ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59')  (8.9ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.5ms) Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 State Load (2.8ms) SELECT "states".* FROM "states" WHERE "states"."country_id" IN (1) Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (13.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (741.7ms) Rendered carnival/_extra_header.html.haml (1.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (91.2ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2926ms (Views: 2896.4ms | ActiveRecord: 18.5ms) Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:31 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:31 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:31 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:32 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:32 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:32 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:33 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:33 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:33 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:34 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:34 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:34 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:34 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:35 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:35 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:35 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:36 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:36 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:36 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:37 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:37 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:37 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:37 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:38 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:38 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:38 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:39 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:39 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:39 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:39 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:40 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:40 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:40 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:41 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:41 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:41 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:42 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:42 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:42 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:42 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 03:16:43 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 03:16:43 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 03:16:44 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 03:16:44 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 03:16:44 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 03:16:45 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 03:16:45 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 03:16:46 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (50.6ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 03:16:46 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 03:16:46 +0000 Started GET "/countries?utf8=%E2%9C%93&scope=all&search_term=&advanced_search=&date_period_label=Este+ano&date_period_from=2014-01-01&date_period_to=2014-12-31&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-10-02 03:16:48 +0000 User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"all", "search_term"=>"", "advanced_search"=>"", "date_period_label"=>"Este ano", "date_period_from"=>"2014-01-01", "date_period_to"=>"2014-12-31", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (2.4ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.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.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.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (699.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (54.0ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59')  (1.9ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.5ms) Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 State Load (2.4ms) SELECT "states".* FROM "states" WHERE "states"."country_id" IN (1) Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (14.3ms) CACHE (0.2ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1080.5ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 2962ms (Views: 2948.8ms | ActiveRecord: 8.6ms) Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:53 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:53 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:53 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:53 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:54 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:54 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:54 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:55 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:55 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:55 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:56 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:56 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:56 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:56 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:57 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:57 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:57 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:58 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:58 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:59 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 03:16:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:00 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:00 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:02 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:02 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:03 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:03 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:04 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:04 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:04 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 03:17:05 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 03:17:05 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 03:17:06 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 03:17:06 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 03:17:07 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 03:17:08 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 03:17:08 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.7ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 03:17:09 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 03:17:09 +0000 Started GET "/countries?utf8=%E2%9C%93&scope=all&search_term=&advanced_search=&date_period_label=Este+ano&date_period_from=2014-01-01&date_period_to=2014-12-31&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-10-02 03:17:20 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"all", "search_term"=>"", "advanced_search"=>"", "date_period_label"=>"Este ano", "date_period_from"=>"2014-01-01", "date_period_to"=>"2014-12-31", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (2.7ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.3ms) 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_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 (363.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (86.5ms) CACHE (0.1ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59')  (17.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (6.3ms) Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."country_id" IN (1) Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (14.3ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1019.2ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (135.5ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 3107ms (Views: 3078.2ms | ActiveRecord: 23.3ms) Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:24 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:24 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:24 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:25 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:25 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:25 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:26 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:26 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:26 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:26 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:27 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:27 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:27 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:28 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:28 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:28 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:29 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:29 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:30 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:30 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 03:17:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:31 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:32 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 03: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-10-02 03:17:33 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:34 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:34 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:35 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:35 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:35 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 03:17:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 03:17:36 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 03:17:36 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 03:17:37 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 03:17:37 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 03:17:38 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 03:17:39 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 03:17:39 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.0ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 03:17:40 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 03:17:40 +0000 Started GET "/countries?utf8=%E2%9C%93&scope=all&search_term=&advanced_search=%7B%22id%22%3A%7B%22operator%22%3A%22equal%22%2C+%22value%22%3A%221%22%2C+%22type%22%3A%22text%22%7D%2C+%22name%22%3A%7B%22operator%22%3A%22like%22%2C+%22value%22%3A%2222222%22%2C+%22type%22%3A%22text%22%7D%2C+%22code%22%3A%7B%22operator%22%3A%22equal%22%2C+%22value%22%3A%22222%22%2C+%22type%22%3A%22text%22%7D%2C+%22updated_at%22%3A%7B%22operator%22%3A%22between%22%2C+%22value%22%3A%222014%2F01%2F01%22%2C+%22type%22%3A%22text%22%7D%2C+%22created_at%22%3A%7B%22operator%22%3A%22between%22%2C+%22value%22%3A%222014%2F01%2F01%22%2C+%22type%22%3A%22text%22%7D%7D&date_period_label=Este+ano&date_period_from=2014-01-01&date_period_to=2014-12-31&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-10-02 03:18:00 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"all", "search_term"=>"", "advanced_search"=>"{\"id\":{\"operator\":\"equal\", \"value\":\"1\", \"type\":\"text\"}, \"name\":{\"operator\":\"like\", \"value\":\"22222\", \"type\":\"text\"}, \"code\":{\"operator\":\"equal\", \"value\":\"222\", \"type\":\"text\"}, \"updated_at\":{\"operator\":\"between\", \"value\":\"2014/01/01\", \"type\":\"text\"}, \"created_at\":{\"operator\":\"between\", \"value\":\"2014/01/01\", \"type\":\"text\"}}", "date_period_label"=>"Este ano", "date_period_from"=>"2014-01-01", "date_period_to"=>"2014-12-31", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (1.6ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND (countries.id = '1') AND (countries.name like '%22222%') AND (countries.code = '222') AND (countries.updated_at between '2014/01/01' and '') AND (countries.created_at between '2014/01/01' and '') Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.2ms) 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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (353.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (44.8ms) CACHE (0.2ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND (countries.id = '1') AND (countries.name like '%22222%') AND (countries.code = '222') AND (countries.updated_at between '2014/01/01' and '') AND (countries.created_at between '2014/01/01' and '')  (1.9ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND (countries.id = '1') AND (countries.name like '%22222%') AND (countries.code = '222') AND (countries.updated_at between '2014/01/01' and '') AND (countries.created_at between '2014/01/01' and '') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.5ms) Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND (countries.id = '1') AND (countries.name like '%22222%') AND (countries.code = '222') AND (countries.updated_at between '2014/01/01' and '') AND (countries.created_at between '2014/01/01' and '') ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (2.8ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND (countries.id = '1') AND (countries.name like '%22222%') AND (countries.code = '222') AND (countries.updated_at between '2014/01/01' and '') AND (countries.created_at between '2014/01/01' and '') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (660.0ms) Rendered carnival/_extra_header.html.haml (0.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2042ms (Views: 2031.9ms | ActiveRecord: 5.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:02 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:03 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:03 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:03 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:04 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:04 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:04 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:05 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:05 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:05 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:05 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:06 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:06 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:06 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:07 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:07 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:07 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:08 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:08 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:08 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:09 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:09 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 03:18:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:10 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:10 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:10 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:11 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:11 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:11 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:12 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:12 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:12 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:13 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:13 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:13 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:14 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:14 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 03:18:14 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 03:18:14 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 03:18:15 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 03:18:15 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 03:18:16 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 03:18:16 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 03:18:17 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 03:18:17 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.2ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 03:18:17 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 03:18:18 +0000 Started GET "/countries?utf8=%E2%9C%93&scope=all&search_term=&advanced_search=&date_period_label=Este+ano&date_period_from=2014-01-01&date_period_to=2014-12-31&sort_column=id&sort_direction=asc&page=1" for 10.0.2.2 at 2014-10-02 11:23:35 +0000 User Load (6.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by CountriesController#index as HTML Parameters: {"utf8"=>"✓", "scope"=>"all", "search_term"=>"", "advanced_search"=>"", "date_period_label"=>"Este ano", "date_period_from"=>"2014-01-01", "date_period_to"=>"2014-12-31", "sort_column"=>"id", "sort_direction"=>"asc", "page"=>"1"}  (2.4ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') 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_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (352.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (48.1ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59')  (1.9ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') AND "countries"."code" = 'BR' Rendered /project/app/views/carnival/shared/_scope.html.haml (2.5ms) Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') ORDER BY countries.id asc LIMIT 50 OFFSET 0 State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."country_id" IN (1) Rendered /project/app/views/carnival/base_admin/_index_as_grid.html.haml (12.4ms) CACHE (0.0ms) SELECT COUNT(*) FROM "countries" WHERE (countries.created_at between '2014-01-01 00:00:00' and '2014-12-31 23:59:59') Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (690.6ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2184ms (Views: 2172.4ms | ActiveRecord: 7.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:38 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:39 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:39 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:39 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:40 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:40 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:40 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:40 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:41 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:41 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:41 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:42 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:42 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:42 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:43 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:43 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:44 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:45 +0000 Started GET "/assets/carnival/notifications.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:45 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-02 11:23:46 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:46 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:46 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-02 11: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-10-02 11:23:48 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:48 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:49 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:50 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:50 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:50 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-10-02 11:23:51 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-02 11:23:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-02 11:23:52 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-02 11:23:52 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-02 11:23:53 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-10-02 11:23:53 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-10-02 11:23:53 +0000 Started GET "/assets/carnival/select2x2.png" for 10.0.2.2 at 2014-10-02 11:23:54 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2x2.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (47.6ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-10-02 11:23:54 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-10-02 11:23:54 +0000 ActiveRecord::SchemaMigration Load (1.7ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (1.8ms) SELECT "schema_migrations".* FROM "schema_migrations"  (2.2ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_person_id' AND type='index'   (1.6ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'  (1.8ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (1.6ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (1.6ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (1.6ms) 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.6ms)  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.6ms) SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'  (4.9ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (3.4ms) SELECT sql FROM sqlite_master WHERE name='index_phones_on_phone_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_phones_on_phone_type_id' AND type='index'  (2.5ms)  SELECT sql FROM sqlite_master WHERE name='index_photos_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_photos_on_person_id' AND type='index'   (1.8ms) 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'  (1.6ms)  SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index'   (1.4ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index' Started GET "/" for 10.0.2.2 at 2014-10-19 00:02:09 +0000 ActiveRecord::SchemaMigration Load (2.1ms) SELECT "schema_migrations".* FROM "schema_migrations" User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (14.0ms) Completed 500 Internal Server Error in 365ms Sprockets::FileNotFound - couldn't find file 'carnival/chosen.css' (in /project/app/assets/stylesheets/carnival/admin.css:19): sprockets (2.11.0) lib/sprockets/context.rb:106:in `resolve' sprockets (2.11.0) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.11.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.11.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.11.0) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.11.0) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.11.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.11.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.11.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.11.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.11.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.11.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.11.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.11.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.11.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.11.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.11.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' () project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml___861695603_90048850' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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.5) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-620574928/variables" for 10.0.2.2 at 2014-10-19 00:02:10 +0000 Started GET "/" for 10.0.2.2 at 2014-10-19 00:02:35 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (0.9ms) Completed 500 Internal Server Error in 288ms Sprockets::FileNotFound - couldn't find file 'carnival/notifications.css' (in /project/app/assets/stylesheets/carnival/admin.css:22): sprockets (2.11.0) lib/sprockets/context.rb:106:in `resolve' sprockets (2.11.0) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.11.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.11.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.11.0) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.11.0) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.11.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.11.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.11.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.11.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.11.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.11.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.11.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.11.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.11.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.11.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.11.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' () project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml___861695603_90048850' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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.5) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-620306328/variables" for 10.0.2.2 at 2014-10-19 00:02:36 +0000 Started GET "/" for 10.0.2.2 at 2014-10-19 00:04:26 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (0.2ms) Completed 500 Internal Server Error in 254ms Sprockets::FileNotFound - couldn't find file 'carnival/jquery-ui-1.8.11.custom' (in /project/app/assets/stylesheets/carnival/admin.css:22): sprockets (2.11.0) lib/sprockets/context.rb:106:in `resolve' sprockets (2.11.0) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.11.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.11.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.11.0) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.11.0) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.11.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.11.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.11.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.11.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.11.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.11.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.11.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.11.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.11.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.11.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.11.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' () project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml___861695603_90048850' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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.5) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-620274068/variables" for 10.0.2.2 at 2014-10-19 00:04:27 +0000 Started GET "/" for 10.0.2.2 at 2014-10-19 00:04:34 +0000 User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (0.3ms) Completed 500 Internal Server Error in 923ms Sass::SyntaxError - Invalid CSS after "...(sprites-active": expected ")", was ".png)) !important;" (in /project/app/assets/stylesheets/carnival/menu.css.scss:166): sass (3.2.19) lib/sass/scss/parser.rb:1147:in `expected' sass (3.2.19) lib/sass/script/lexer.rb:206:in `expected!' sass (3.2.19) lib/sass/script/parser.rb:483:in `assert_tok' sass (3.2.19) lib/sass/script/parser.rb:339:in `funcall' sass (3.2.19) lib/sass/script/parser.rb:319:in `ident' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_not' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_div' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_minus' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_plus' sass (3.2.19) lib/sass/script/parser.rb:209:in `times_div_or_mod' sass (3.2.19) lib/sass/script/parser.rb:209:in `plus_or_minus' sass (3.2.19) lib/sass/script/parser.rb:209:in `relational' sass (3.2.19) lib/sass/script/parser.rb:209:in `eq_or_neq' sass (3.2.19) lib/sass/script/parser.rb:209:in `and_expr' sass (3.2.19) lib/sass/script/parser.rb:209:in `or_expr' sass (3.2.19) lib/sass/script/parser.rb:298:in `space' sass (3.2.19) lib/sass/script/parser.rb:283:in `interpolation' sass (3.2.19) lib/sass/script/parser.rb:209:in `equals' sass (3.2.19) lib/sass/script/parser.rb:382:in `arglist' sass (3.2.19) lib/sass/script/parser.rb:374:in `fn_arglist' sass (3.2.19) lib/sass/script/parser.rb:338:in `funcall' sass (3.2.19) lib/sass/script/parser.rb:319:in `ident' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_not' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_div' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_minus' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_plus' sass (3.2.19) lib/sass/script/parser.rb:209:in `times_div_or_mod' sass (3.2.19) lib/sass/script/parser.rb:209:in `plus_or_minus' sass (3.2.19) lib/sass/script/parser.rb:209:in `relational' sass (3.2.19) lib/sass/script/parser.rb:209:in `eq_or_neq' sass (3.2.19) lib/sass/script/parser.rb:209:in `and_expr' sass (3.2.19) lib/sass/script/parser.rb:209:in `or_expr' sass (3.2.19) lib/sass/script/parser.rb:298:in `space' sass (3.2.19) lib/sass/script/parser.rb:283:in `interpolation' sass (3.2.19) lib/sass/script/parser.rb:246:in `expr' sass (3.2.19) lib/sass/script/parser.rb:477:in `assert_expr' sass (3.2.19) lib/sass/script/parser.rb:49:in `parse' sass (3.2.19) lib/sass/scss/parser.rb:1022:in `sass_script' sass (3.2.19) lib/sass/scss/parser.rb:882:in `value!' sass (3.2.19) lib/sass/scss/parser.rb:859:in `declaration' sass (3.2.19) lib/sass/scss/parser.rb:582:in `block in declaration_or_ruleset' sass (3.2.19) lib/sass/scss/parser.rb:1123:in `rethrow' sass (3.2.19) lib/sass/scss/parser.rb:592:in `declaration_or_ruleset' sass (3.2.19) lib/sass/scss/parser.rb:554:in `block_child' sass (3.2.19) lib/sass/scss/parser.rb:543:in `block_contents' sass (3.2.19) lib/sass/scss/parser.rb:535:in `block' sass (3.2.19) lib/sass/scss/parser.rb:529:in `ruleset' sass (3.2.19) lib/sass/scss/parser.rb:553:in `block_child' sass (3.2.19) lib/sass/scss/parser.rb:546:in `block_contents' sass (3.2.19) lib/sass/scss/parser.rb:82:in `stylesheet' sass (3.2.19) lib/sass/scss/parser.rb:27:in `parse' sass (3.2.19) lib/sass/engine.rb:342:in `_to_tree' sass (3.2.19) lib/sass/engine.rb:315:in `_render' sass (3.2.19) lib/sass/engine.rb:262:in `render' sass-rails (4.0.3) lib/sass/rails/template.rb:22:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.11.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.11.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.11.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.11.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.11.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.11.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.11.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.11.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.11.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.11.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.11.0) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.11.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.11.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.11.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.11.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.11.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.11.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.11.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.11.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' () project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml___861695603_90048850' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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.5) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-618439858/variables" for 10.0.2.2 at 2014-10-19 00:04:35 +0000 Started GET "/" for 10.0.2.2 at 2014-10-19 00:05:45 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (0.3ms) Completed 500 Internal Server Error in 299ms Sass::SyntaxError - Invalid CSS after "...ge_path(sprites": expected ")", was ".png));" (in /project/app/assets/stylesheets/carnival/menu.css.scss:198): sass (3.2.19) lib/sass/scss/parser.rb:1147:in `expected' sass (3.2.19) lib/sass/script/lexer.rb:206:in `expected!' sass (3.2.19) lib/sass/script/parser.rb:483:in `assert_tok' sass (3.2.19) lib/sass/script/parser.rb:339:in `funcall' sass (3.2.19) lib/sass/script/parser.rb:319:in `ident' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_not' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_div' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_minus' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_plus' sass (3.2.19) lib/sass/script/parser.rb:209:in `times_div_or_mod' sass (3.2.19) lib/sass/script/parser.rb:209:in `plus_or_minus' sass (3.2.19) lib/sass/script/parser.rb:209:in `relational' sass (3.2.19) lib/sass/script/parser.rb:209:in `eq_or_neq' sass (3.2.19) lib/sass/script/parser.rb:209:in `and_expr' sass (3.2.19) lib/sass/script/parser.rb:209:in `or_expr' sass (3.2.19) lib/sass/script/parser.rb:298:in `space' sass (3.2.19) lib/sass/script/parser.rb:283:in `interpolation' sass (3.2.19) lib/sass/script/parser.rb:209:in `equals' sass (3.2.19) lib/sass/script/parser.rb:382:in `arglist' sass (3.2.19) lib/sass/script/parser.rb:374:in `fn_arglist' sass (3.2.19) lib/sass/script/parser.rb:338:in `funcall' sass (3.2.19) lib/sass/script/parser.rb:319:in `ident' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_not' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_div' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_minus' sass (3.2.19) lib/sass/script/parser.rb:228:in `unary_plus' sass (3.2.19) lib/sass/script/parser.rb:209:in `times_div_or_mod' sass (3.2.19) lib/sass/script/parser.rb:209:in `plus_or_minus' sass (3.2.19) lib/sass/script/parser.rb:209:in `relational' sass (3.2.19) lib/sass/script/parser.rb:209:in `eq_or_neq' sass (3.2.19) lib/sass/script/parser.rb:209:in `and_expr' sass (3.2.19) lib/sass/script/parser.rb:209:in `or_expr' sass (3.2.19) lib/sass/script/parser.rb:298:in `space' sass (3.2.19) lib/sass/script/parser.rb:283:in `interpolation' sass (3.2.19) lib/sass/script/parser.rb:246:in `expr' sass (3.2.19) lib/sass/script/parser.rb:477:in `assert_expr' sass (3.2.19) lib/sass/script/parser.rb:49:in `parse' sass (3.2.19) lib/sass/scss/parser.rb:1022:in `sass_script' sass (3.2.19) lib/sass/scss/parser.rb:882:in `value!' sass (3.2.19) lib/sass/scss/parser.rb:859:in `declaration' sass (3.2.19) lib/sass/scss/parser.rb:582:in `block in declaration_or_ruleset' sass (3.2.19) lib/sass/scss/parser.rb:1123:in `rethrow' sass (3.2.19) lib/sass/scss/parser.rb:592:in `declaration_or_ruleset' sass (3.2.19) lib/sass/scss/parser.rb:554:in `block_child' sass (3.2.19) lib/sass/scss/parser.rb:546:in `block_contents' sass (3.2.19) lib/sass/scss/parser.rb:535:in `block' sass (3.2.19) lib/sass/scss/parser.rb:529:in `ruleset' sass (3.2.19) lib/sass/scss/parser.rb:553:in `block_child' sass (3.2.19) lib/sass/scss/parser.rb:546:in `block_contents' sass (3.2.19) lib/sass/scss/parser.rb:82:in `stylesheet' sass (3.2.19) lib/sass/scss/parser.rb:27:in `parse' sass (3.2.19) lib/sass/engine.rb:342:in `_to_tree' sass (3.2.19) lib/sass/engine.rb:315:in `_render' sass (3.2.19) lib/sass/engine.rb:262:in `render' sass-rails (4.0.3) lib/sass/rails/template.rb:22:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.11.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.11.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.11.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.11.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.11.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.11.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.11.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.11.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.11.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.11.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.11.0) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.11.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.11.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.11.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.11.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.11.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.11.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.11.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.11.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.11.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.11.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.11.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.11.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.1.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' () project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml___861695603_90048850' actionview (4.1.5) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.5) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.5) lib/action_view/template.rb:339:in `instrument' actionview (4.1.5) lib/action_view/template.rb:143:in `render' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.5) 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.5) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.5) 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.5) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/routing/mapper.rb:45:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678: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.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) 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.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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/-623289278/variables" for 10.0.2.2 at 2014-10-19 00:05:46 +0000 Started GET "/" for 10.0.2.2 at 2014-10-19 00:11:19 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (0.3ms) Rendered carnival/_extra_header.html.haml (67.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (56.8ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (1.9ms) Completed 200 OK in 4325ms (Views: 4324.9ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:24 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:24 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:25 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:25 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:26 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:26 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:26 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:27 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:27 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:27 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:28 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:28 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:28 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:29 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:29 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:30 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:30 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-19 00:11:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:31 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:32 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:34 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:34 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:35 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:35 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:36 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-19 00:11:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-10-19 00:11:36 +0000 Started GET "/images/sprites.png" for 10.0.2.2 at 2014-10-19 00:11:37 +0000 ActionController::RoutingError (No route matches [GET] "/images/sprites.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (27.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (74.0ms) Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-10-19 00:11:37 +0000 Started GET "/assets/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-10-19 00:11:38 +0000 Started GET "/images/overlay.png" for 10.0.2.2 at 2014-10-19 00:11:38 +0000 ActionController::RoutingError (No route matches [GET] "/images/overlay.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.0ms) Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-10-19 00:11:38 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (40.3ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:31 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:31 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:32 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:32 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:32 +0000 Started GET "/" for 10.0.2.2 at 2014-10-19 00:12:33 +0000 User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (0.2ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1876ms (Views: 1875.1ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:36 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:36 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:36 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:37 +0000 Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-19 00:12:37 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-19 00:12:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-19 00:12:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-19 00:12:38 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-19 00:12:38 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-19 00:12:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-19 00:12:39 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-19 00:12:39 +0000 Started GET "/images/sprites.png" for 10.0.2.2 at 2014-10-19 00:13:55 +0000 ActionController::RoutingError (No route matches [GET] "/images/sprites.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.8ms) Started GET "/sprites.png" for 10.0.2.2 at 2014-10-19 00:14:04 +0000 ActionController::RoutingError (No route matches [GET] "/sprites.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (41.0ms) Started GET "/carnival/sprites.png" for 10.0.2.2 at 2014-10-19 00:14:11 +0000 ActionController::RoutingError (No route matches [GET] "/carnival/sprites.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (46.0ms) Started GET "/images/carnival/sprites.png" for 10.0.2.2 at 2014-10-19 00:14:17 +0000 ActionController::RoutingError (No route matches [GET] "/images/carnival/sprites.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.0ms) Started GET "/assets/sprites.png" for 10.0.2.2 at 2014-10-19 00:14:27 +0000 ActionController::RoutingError (No route matches [GET] "/assets/sprites.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.2ms) Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-19 00:14:36 +0000 Started GET "/" for 10.0.2.2 at 2014-10-19 00:15:07 +0000 User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (0.3ms) Rendered carnival/_extra_header.html.haml (0.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (11.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1734ms (Views: 1732.9ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/forms.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:10 +0000 Started GET "/assets/carnival/footer.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:10 +0000 Started GET "/assets/carnival/menu.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:10 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:11 +0000 Started GET "/assets/carnival/structure.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:11 +0000 Started GET "/assets/carnival/header.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:11 +0000 Started GET "/assets/carnival/actions.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:12 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:12 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:12 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:13 +0000 Started GET "/assets/carnival/period.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:13 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:13 +0000 Started GET "/assets/carnival/search.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:14 +0000 Started GET "/assets/carnival/scope.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:14 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:14 +0000 Started GET "/assets/carnival/modal.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:15 +0000 Started GET "/assets/carnival/grid.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:15 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:15 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:16 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 10.0.2.2 at 2014-10-19 00:15:16 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:16 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:17 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:17 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:17 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:18 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:19 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:19 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:20 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:21 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-10-19 00:15:21 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-10-19 00:15:21 +0000 ActiveRecord::SchemaMigration Load (1.8ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePost (20140922141033)  (0.1ms) begin transaction  (5.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "text" text, "status" integer DEFAULT 1, "cover_file_name" varchar(255), "cover_content_type" varchar(255), "cover_file_size" integer, "cover_updated_at" datetime, "created_at" datetime, "updated_at" datetime)  SQL (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140922141033"]]  (3.6ms) commit transaction Migrating to CreateComment (20140922142000)  (0.1ms) begin transaction  (4.9ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" varchar(255), "post_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140922142000"]]  (3.2ms) commit transaction Migrating to CreatePostFile (20140922142154)  (0.1ms) begin transaction  (5.3ms) CREATE TABLE "post_files" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "file_file_name" varchar(255), "file_content_type" varchar(255), "file_file_size" integer, "file_updated_at" datetime, "post_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140922142154"]]  (2.8ms) commit transaction Migrating to AddColumnsToPost (20140922142755)  (0.1ms) begin transaction  (3.4ms) ALTER TABLE "posts" ADD "user_id" integer SQL (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140922142755"]]  (2.5ms) commit transaction Migrating to CreateTag (20140922143128)  (0.1ms) begin transaction  (5.0ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140922143128"]]  (3.8ms) commit transaction Migrating to CreatePostsTags (20140922150155)  (0.1ms) begin transaction  (10.4ms) CREATE TABLE "posts_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (1.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140922150155"]]  (4.0ms) commit transaction Migrating to AddColumnToComments (20141008195345)  (0.1ms) begin transaction  (4.8ms) ALTER TABLE "comments" ADD "approved" boolean DEFAULT 'true' SQL (1.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141008195345"]]  (2.8ms) commit transaction ActiveRecord::SchemaMigration Load (3.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (2.0ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_person_id' AND type='index'   (6.8ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_address_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_address_type_id' AND type='index'  (2.3ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_country_id' AND type='index'   (2.6ms) SELECT sql FROM sqlite_master WHERE name='index_addresses_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_state_id' AND type='index'  (2.3ms)  SELECT sql FROM sqlite_master WHERE name='index_addresses_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_addresses_on_city_id' AND type='index'   (4.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'  (3.0ms)  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'   (3.1ms) SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable' AND type='index'  (2.2ms)  SELECT sql FROM sqlite_master WHERE name='idx_ckeditor_assetable_type' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='idx_ckeditor_assetable_type' AND type='index'   (3.6ms) SELECT sql FROM sqlite_master WHERE name='index_phones_on_phone_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_phones_on_phone_type_id' AND type='index'  (2.7ms)  SELECT sql FROM sqlite_master WHERE name='index_photos_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_photos_on_person_id' AND type='index'   (2.1ms) 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'  (2.1ms)  SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index'   (5.3ms) SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index' Started GET "/" for 192.168.33.1 at 2014-11-05 18:40:12 +0000 ActiveRecord::SchemaMigration Load (2.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/users/sign_in" for 192.168.33.1 at 2014-11-05 18:40:12 +0000 Processing by Devise::SessionsController#new as HTML Rendered devise/shared/_links.html.haml (3.0ms) Rendered devise/sessions/new.html.haml within layouts/application (127.9ms) Completed 200 OK in 762ms (Views: 739.2ms | ActiveRecord: 1.9ms) Started GET "/assets/carnival_devise_views.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:14 +0000 Started GET "/assets/application.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:14 +0000 Started GET "/assets/application.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:14 +0000 Started GET "/assets/turbolinks.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:15 +0000 Started GET "/assets/jquery.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:15 +0000 Started GET "/assets/fonts/opensans-regular-webfont.woff" for 192.168.33.1 at 2014-11-05 18:40:16 +0000 Started GET "/users/sign_up" for 192.168.33.1 at 2014-11-05 18:40:19 +0000 Processing by Devise::RegistrationsController#new as HTML Rendered devise/shared/_links.html.haml (0.8ms) Rendered devise/registrations/new.html.haml within layouts/application (38.1ms) Completed 200 OK in 344ms (Views: 342.4ms | ActiveRecord: 0.0ms) Started POST "/users" for 192.168.33.1 at 2014-11-05 18:40:32 +0000 Processing by Devise::RegistrationsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"XJhttbxO5jnnbSyEuF0sQVhDeBYOtEqiKevn7un8ui4=", "user"=>{"email"=>"antonioams@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}  (0.1ms) begin transaction User Exists (1.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'antonioams@gmail.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-11-05 18:40:33.157614"], ["email", "antonioams@gmail.com"], ["encrypted_password", "$2a$10$t8vHjhng48Yt.qiZJ0ZVkOYavSMkqaTZv2ileIo./ibcXnLGynIzm"], ["updated_at", "2014-11-05 18:40:33.157614"]]  (3.7ms) commit transaction  (0.1ms) begin transaction Binary data inserted for `string` type on column `current_sign_in_ip` Binary data inserted for `string` type on column `last_sign_in_ip` SQL (3.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-11-05 18:40:33.180511"], ["current_sign_in_ip", "192.168.33.1"], ["last_sign_in_at", "2014-11-05 18:40:33.180511"], ["last_sign_in_ip", "192.168.33.1"], ["sign_in_count", 1], ["updated_at", "2014-11-05 18:40:33.183011"]]  (2.6ms) commit transaction Redirected to http://192.168.33.11:3000/ Completed 302 Found in 359ms (ActiveRecord: 14.2ms) Started GET "/" for 192.168.33.1 at 2014-11-05 18:40:33 +0000 User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1 Processing by Carnival::BaseAdminController#home as HTML Rendered carnival/base_admin/home.html.haml within layouts/carnival/admin (1.8ms) Rendered carnival/_extra_header.html.haml (3.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (2.7ms) Completed 200 OK in 4526ms (Views: 4525.6ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/header.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:38 +0000 Started GET "/assets/carnival/footer.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:38 +0000 Started GET "/assets/carnival/menu.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:39 +0000 Started GET "/assets/carnival/structure.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:39 +0000 Started GET "/assets/carnival/forms.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:39 +0000 Started GET "/assets/carnival/admin.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:40 +0000 Started GET "/assets/carnival/actions.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:41 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:41 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:41 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:42 +0000 Started GET "/assets/carnival/period.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:42 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:43 +0000 Started GET "/assets/carnival/search.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:43 +0000 Started GET "/assets/carnival/scope.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:43 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:44 +0000 Started GET "/assets/carnival/modal.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:44 +0000 Started GET "/assets/carnival/grid.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:45 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:45 +0000 Started GET "/assets/carnival/select2.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:46 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 192.168.33.1 at 2014-11-05 18:40:46 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:46 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:48 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:49 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:49 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:50 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:50 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 192.168.33.1 at 2014-11-05 18:40:51 +0000 Started GET "/assets/carnival/sprites.png" for 192.168.33.1 at 2014-11-05 18:40:51 +0000 Started GET "/assets/carnival/header-bg.png" for 192.168.33.1 at 2014-11-05 18:40:52 +0000 Started GET "/assets/carnival/overlay.png" for 192.168.33.1 at 2014-11-05 18:40:52 +0000 Started GET "/assets/favicon.ico" for 192.168.33.1 at 2014-11-05 18:40:52 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.0ms) Started GET "/posts" for 192.168.33.1 at 2014-11-05 18:41:45 +0000 User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1 Processing by PostsController#index as HTML  (2.4ms) SELECT COUNT(*) FROM "posts" WHERE (posts.created_at between '2014-11-05 00:00:00' and '2014-11-05 23:59:59') 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.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.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (344.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (67.9ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (2.2ms) CACHE (0.0ms) SELECT COUNT(*) FROM "posts" WHERE (posts.created_at between '2014-11-05 00:00:00' and '2014-11-05 23:59:59') Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (637.2ms) Rendered carnival/_extra_header.html.haml (0.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2296ms (Views: 2017.6ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/advanced_search.js?body=1" for 192.168.33.1 at 2014-11-05 18:41:48 +0000 Started GET "/assets/carnival/novo.png" for 192.168.33.1 at 2014-11-05 18:41:48 +0000 Started GET "/assets/carnival/sort_both.png" for 192.168.33.1 at 2014-11-05 18:41:48 +0000 Started GET "/assets/carnival/sort_asc.png" for 192.168.33.1 at 2014-11-05 18:41:49 +0000 Started GET "/assets/carnival/select2.png" for 192.168.33.1 at 2014-11-05 18:41:49 +0000 Started GET "/assets/carnival/sprites-active.png" for 192.168.33.1 at 2014-11-05 18:41:49 +0000 Started GET "/posts/new" for 192.168.33.1 at 2014-11-05 18:41:57 +0000 User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1 Processing by PostsController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.7ms) Tag Load (2.2ms) SELECT "tags".* FROM "tags" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (261.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (156.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (319.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (985.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1050.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (1104.6ms) Rendered carnival/_extra_header.html.haml (1.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2545ms (Views: 2538.0ms | ActiveRecord: 5.9ms) Started GET "/covers/thumb/missing.png" for 192.168.33.1 at 2014-11-05 18:42:00 +0000 ActionController::RoutingError (No route matches [GET] "/covers/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.1ms) Started GET "/assets/carnival/voltar.png" for 192.168.33.1 at 2014-11-05 18:42:00 +0000 Started GET "/files/thumb/missing.png" for 192.168.33.1 at 2014-11-05 18:42:01 +0000 ActionController::RoutingError (No route matches [GET] "/files/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.1ms) Started GET "/assets/ckeditor/config.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:42:01 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:42:01 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:42:02 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:42:02 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 192.168.33.1 at 2014-11-05 18:42:02 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:42:03 +0000 Started GET "/assets/carnival/select2-spinner.gif" for 192.168.33.1 at 2014-11-05 18:42:23 +0000 Started GET "/assets/carnival/select2x2.png" for 192.168.33.1 at 2014-11-05 18:43:13 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:43:42 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:43:44 +0000 Started GET "/assets/favicon.ico" for 192.168.33.1 at 2014-11-05 18:43:46 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (70.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (1025.9ms) Started GET "/assets/ckeditor/styles.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:43:49 +0000 Started GET "/assets/ckeditor/skins/moono/icons_hidpi.png" for 192.168.33.1 at 2014-11-05 18:43:52 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:43:54 +0000 Started GET "/assets/carnival/select2.png" for 192.168.33.1 at 2014-11-05 18:45:06 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:48:01 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:48:01 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:48:46 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:48:46 +0000 Started GET "/posts/new" for 192.168.33.1 at 2014-11-05 18:50:50 +0000 User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1 Processing by PostsController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Tag Load (1.4ms) SELECT "tags".* FROM "tags" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (48.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (98.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (162.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (496.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (537.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (575.6ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2336ms (Views: 2333.1ms | ActiveRecord: 1.4ms) Started GET "/assets/carnival/admin.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:53 +0000 Started GET "/assets/carnival/menu.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:53 +0000 Started GET "/assets/carnival/forms.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:54 +0000 Started GET "/assets/carnival/footer.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:54 +0000 Started GET "/assets/carnival/structure.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:54 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:55 +0000 Started GET "/assets/carnival/actions.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:55 +0000 Started GET "/assets/carnival/header.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:55 +0000 Started GET "/assets/carnival/period.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:56 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:56 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:56 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:57 +0000 Started GET "/assets/carnival/search.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:57 +0000 Started GET "/assets/carnival/scope.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:57 +0000 Started GET "/assets/carnival/select2.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:58 +0000 Started GET "/assets/carnival/grid.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:58 +0000 Started GET "/assets/carnival/modal.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:59 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:59 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 192.168.33.1 at 2014-11-05 18:50:59 +0000 Started GET "/assets/jquery.js?body=1" for 192.168.33.1 at 2014-11-05 18:50:59 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:00 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:00 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:00 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:01 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:01 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:02 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:03 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:04 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:04 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:05 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 192.168.33.1 at 2014-11-05 18:51:05 +0000 Started GET "/covers/thumb/missing.png" for 192.168.33.1 at 2014-11-05 18:51:05 +0000 ActionController::RoutingError (No route matches [GET] "/covers/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (71.3ms) Started GET "/files/thumb/missing.png" for 192.168.33.1 at 2014-11-05 18:51:06 +0000 ActionController::RoutingError (No route matches [GET] "/files/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (14.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.3ms) Started GET "/assets/fonts/opensans-regular-webfont.woff" for 192.168.33.1 at 2014-11-05 18:51:06 +0000 Started GET "/assets/carnival/header-bg.png" for 192.168.33.1 at 2014-11-05 18:51:07 +0000 Started GET "/assets/carnival/sprites.png" for 192.168.33.1 at 2014-11-05 18:51:07 +0000 Started GET "/assets/carnival/voltar.png" for 192.168.33.1 at 2014-11-05 18:51:07 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:51:08 +0000 Started GET "/assets/carnival/select2.png" for 192.168.33.1 at 2014-11-05 18:51:08 +0000 Started GET "/assets/carnival/overlay.png" for 192.168.33.1 at 2014-11-05 18:51:08 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:51:08 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:51:09 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:51:10 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 192.168.33.1 at 2014-11-05 18:51:11 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:51:11 +0000 Started GET "/posts/new" for 192.168.33.1 at 2014-11-05 18:52:03 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1 Processing by PostsController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Tag Load (1.4ms) SELECT "tags".* FROM "tags" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (46.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (102.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (162.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (467.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (511.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (550.9ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2377ms (Views: 2373.6ms | ActiveRecord: 1.4ms) Started GET "/assets/carnival/admin.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:06 +0000 Started GET "/assets/carnival/structure.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:07 +0000 Started GET "/assets/carnival/header.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:07 +0000 Started GET "/assets/carnival/forms.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:08 +0000 Started GET "/assets/carnival/footer.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:08 +0000 Started GET "/assets/carnival/menu.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:08 +0000 Started GET "/assets/carnival/actions.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:09 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:09 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:09 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:09 +0000 Started GET "/assets/carnival/period.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:10 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:10 +0000 Started GET "/assets/carnival/search.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:10 +0000 Started GET "/assets/carnival/scope.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:11 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:11 +0000 Started GET "/assets/carnival/modal.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:11 +0000 Started GET "/assets/carnival/grid.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:12 +0000 Started GET "/assets/carnival/select2.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:13 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 192.168.33.1 at 2014-11-05 18:52:13 +0000 Started GET "/assets/jquery.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:13 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:14 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:15 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:16 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:16 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:17 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:17 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 192.168.33.1 at 2014-11-05 18:52:17 +0000 Started GET "/covers/thumb/missing.png" for 192.168.33.1 at 2014-11-05 18:52:17 +0000 ActionController::RoutingError (No route matches [GET] "/covers/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.2ms) Started GET "/files/thumb/missing.png" for 192.168.33.1 at 2014-11-05 18:52:18 +0000 ActionController::RoutingError (No route matches [GET] "/files/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (147.7ms) Started GET "/assets/fonts/opensans-regular-webfont.woff" for 192.168.33.1 at 2014-11-05 18:52:19 +0000 Started GET "/assets/carnival/header-bg.png" for 192.168.33.1 at 2014-11-05 18:52:19 +0000 Started GET "/assets/carnival/sprites.png" for 192.168.33.1 at 2014-11-05 18:52:19 +0000 Started GET "/assets/carnival/voltar.png" for 192.168.33.1 at 2014-11-05 18:52:19 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:52:20 +0000 Started GET "/assets/carnival/select2.png" for 192.168.33.1 at 2014-11-05 18:52:20 +0000 Started GET "/assets/carnival/overlay.png" for 192.168.33.1 at 2014-11-05 18:52:20 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:52:21 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:52:21 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 192.168.33.1 at 2014-11-05 18:52:21 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 192.168.33.1 at 2014-11-05 18:52:22 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 18:52:22 +0000 Started GET "/posts/new" for 192.168.33.1 at 2014-11-05 19:19:20 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1 Processing by PostsController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Tag Load (1.2ms) SELECT "tags".* FROM "tags" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (46.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (103.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (170.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (480.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (519.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (560.8ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 1999ms (Views: 1996.8ms | ActiveRecord: 1.2ms) Started GET "/assets/carnival/admin.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:22 +0000 Started GET "/assets/carnival/forms.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:23 +0000 Started GET "/assets/carnival/actions.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:23 +0000 Started GET "/assets/carnival/menu.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:24 +0000 Started GET "/assets/carnival/header.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:24 +0000 Started GET "/assets/carnival/structure.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:24 +0000 Started GET "/assets/carnival/footer.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:25 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:25 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:26 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:26 +0000 Started GET "/assets/carnival/period.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:26 +0000 Started GET "/assets/carnival/scope.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:27 +0000 Started GET "/assets/carnival/search.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:27 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:27 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:27 +0000 Started GET "/assets/carnival/modal.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:28 +0000 Started GET "/assets/carnival/grid.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:28 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:28 +0000 Started GET "/assets/carnival/select2.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:29 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 192.168.33.1 at 2014-11-05 19:19:29 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:29 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:30 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:30 +0000 Started GET "/assets/jquery.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:30 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:32 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:32 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:32 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:33 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:33 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:33 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 192.168.33.1 at 2014-11-05 19:19:34 +0000 Started GET "/covers/thumb/missing.png" for 192.168.33.1 at 2014-11-05 19:19:34 +0000 ActionController::RoutingError (No route matches [GET] "/covers/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.6ms) Started GET "/files/thumb/missing.png" for 192.168.33.1 at 2014-11-05 19:19:35 +0000 ActionController::RoutingError (No route matches [GET] "/files/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.8ms) Started GET "/assets/fonts/opensans-regular-webfont.woff" for 192.168.33.1 at 2014-11-05 19:19:35 +0000 Started GET "/assets/carnival/sprites.png" for 192.168.33.1 at 2014-11-05 19:19:35 +0000 Started GET "/assets/carnival/header-bg.png" for 192.168.33.1 at 2014-11-05 19:19:36 +0000 Started GET "/assets/carnival/voltar.png" for 192.168.33.1 at 2014-11-05 19:19:36 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:19:36 +0000 Started GET "/assets/carnival/select2.png" for 192.168.33.1 at 2014-11-05 19:19:37 +0000 Started GET "/assets/carnival/overlay.png" for 192.168.33.1 at 2014-11-05 19:19:37 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 19:19:37 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:19:37 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:19:38 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 192.168.33.1 at 2014-11-05 19:19:38 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 19:19:38 +0000 Started GET "/posts/new" for 192.168.33.1 at 2014-11-05 19:23:18 +0000 User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1 Processing by PostsController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.3ms) Tag Load (1.9ms) SELECT "tags".* FROM "tags" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (150.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (59.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (155.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (296.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (748.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (797.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (850.4ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.2ms) Completed 200 OK in 2389ms (Views: 2175.4ms | ActiveRecord: 6.4ms) Started GET "/assets/carnival/admin.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:21 +0000 Started GET "/assets/carnival/structure.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:22 +0000 Started GET "/assets/carnival/actions.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:22 +0000 Started GET "/assets/carnival/footer.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:22 +0000 Started GET "/assets/carnival/menu.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:23 +0000 Started GET "/assets/carnival/header.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:23 +0000 Started GET "/assets/carnival/forms.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:23 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:23 +0000 Started GET "/assets/carnival/search.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:24 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:24 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:24 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:24 +0000 Started GET "/assets/carnival/period.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:25 +0000 Started GET "/assets/carnival/grid.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:26 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:26 +0000 Started GET "/assets/carnival/select2.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:26 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:26 +0000 Started GET "/assets/carnival/scope.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:27 +0000 Started GET "/assets/carnival/modal.css?body=1" for 192.168.33.1 at 2014-11-05 19:23:27 +0000 Started GET "/assets/jquery.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:28 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:28 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:28 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:28 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:30 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:30 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:30 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:30 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:31 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 192.168.33.1 at 2014-11-05 19:23:31 +0000 Started GET "/covers/thumb/missing.png" for 192.168.33.1 at 2014-11-05 19:23:31 +0000 ActionController::RoutingError (No route matches [GET] "/covers/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.0ms) Started GET "/files/thumb/missing.png" for 192.168.33.1 at 2014-11-05 19:23:32 +0000 ActionController::RoutingError (No route matches [GET] "/files/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.3ms) Started GET "/assets/carnival/voltar.png" for 192.168.33.1 at 2014-11-05 19:23:32 +0000 Started GET "/assets/carnival/sprites.png" for 192.168.33.1 at 2014-11-05 19:23:33 +0000 Started GET "/assets/carnival/header-bg.png" for 192.168.33.1 at 2014-11-05 19:23:33 +0000 Started GET "/assets/fonts/opensans-regular-webfont.woff" for 192.168.33.1 at 2014-11-05 19:23:33 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:23:34 +0000 Started GET "/assets/carnival/select2.png" for 192.168.33.1 at 2014-11-05 19:23:34 +0000 Started GET "/assets/carnival/overlay.png" for 192.168.33.1 at 2014-11-05 19:23:34 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:23:34 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 19:23:35 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:23:35 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 192.168.33.1 at 2014-11-05 19:23:36 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 19:23:36 +0000 Started GET "/posts/new" for 192.168.33.1 at 2014-11-05 19:24:03 +0000 User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1 Processing by PostsController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.6ms) Tag Load (1.2ms) SELECT "tags".* FROM "tags" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (195.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (121.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (267.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (775.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (823.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (870.7ms) Rendered carnival/_extra_header.html.haml (1.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2322ms (Views: 2158.7ms | ActiveRecord: 5.9ms) Started GET "/assets/carnival/admin.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:06 +0000 Started GET "/assets/carnival/structure.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:06 +0000 Started GET "/assets/carnival/header.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:07 +0000 Started GET "/assets/carnival/menu.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:07 +0000 Started GET "/assets/carnival/forms.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:07 +0000 Started GET "/assets/carnival/footer.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:08 +0000 Started GET "/assets/carnival/actions.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:08 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:08 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:08 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:09 +0000 Started GET "/assets/carnival/period.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:09 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:09 +0000 Started GET "/assets/carnival/search.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:09 +0000 Started GET "/assets/carnival/scope.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:10 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:10 +0000 Started GET "/assets/carnival/modal.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:10 +0000 Started GET "/assets/carnival/grid.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:11 +0000 Started GET "/assets/carnival/select2.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:11 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:12 +0000 Started GET "/assets/jquery.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:12 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:12 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:12 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:13 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:13 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:14 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:14 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:14 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:15 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:15 +0000 Started GET "/assets/carnival/admin.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:15 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:16 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 192.168.33.1 at 2014-11-05 19:24:16 +0000 Started GET "/assets/missing.png" for 192.168.33.1 at 2014-11-05 19:24:16 +0000 Started GET "/files/thumb/missing.png" for 192.168.33.1 at 2014-11-05 19:24:16 +0000 ActionController::RoutingError (No route matches [GET] "/files/thumb/missing.png"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) 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.5) 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.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) 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@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481@carnival/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.0ms) Started GET "/assets/carnival/voltar.png" for 192.168.33.1 at 2014-11-05 19:24:17 +0000 Started GET "/assets/carnival/sprites.png" for 192.168.33.1 at 2014-11-05 19:24:17 +0000 Started GET "/assets/carnival/header-bg.png" for 192.168.33.1 at 2014-11-05 19:24:17 +0000 Started GET "/assets/fonts/opensans-regular-webfont.woff" for 192.168.33.1 at 2014-11-05 19:24:18 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:24:18 +0000 Started GET "/assets/carnival/select2.png" for 192.168.33.1 at 2014-11-05 19:24:18 +0000 Started GET "/assets/carnival/overlay.png" for 192.168.33.1 at 2014-11-05 19:24:19 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:24:19 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 19:24:19 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:24:20 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 192.168.33.1 at 2014-11-05 19:24:20 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 19:24:20 +0000 Started GET "/posts/new" for 192.168.33.1 at 2014-11-05 19:24:52 +0000 User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1 Processing by PostsController#new as HTML Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (57.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.8ms) Tag Load (1.7ms) SELECT "tags".* FROM "tags" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (147.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (117.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (264.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (766.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (811.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (856.0ms) Rendered carnival/_extra_header.html.haml (0.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (51.1ms) Rendered /project/app/views/carnival/shared/_application_modal_partial.html.haml (0.1ms) Completed 200 OK in 2315ms (Views: 2160.8ms | ActiveRecord: 6.6ms) Started GET "/assets/carnival/admin.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:55 +0000 Started GET "/assets/carnival/forms.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:56 +0000 Started GET "/assets/carnival/footer.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:56 +0000 Started GET "/assets/carnival/menu.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:56 +0000 Started GET "/assets/carnival/header.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:57 +0000 Started GET "/assets/carnival/structure.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:57 +0000 Started GET "/assets/carnival/actions.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:57 +0000 Started GET "/assets/carnival/carnival-table.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:57 +0000 Started GET "/assets/carnival/carnival-list.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:58 +0000 Started GET "/assets/carnival/carnival-grid.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:58 +0000 Started GET "/assets/carnival/period.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:58 +0000 Started GET "/assets/carnival/listing-tools.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:58 +0000 Started GET "/assets/carnival/search.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:59 +0000 Started GET "/assets/carnival/scope.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:59 +0000 Started GET "/assets/carnival/pagination.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:59 +0000 Started GET "/assets/carnival/modal.css?body=1" for 192.168.33.1 at 2014-11-05 19:24:59 +0000 Started GET "/assets/carnival/grid.css?body=1" for 192.168.33.1 at 2014-11-05 19:25:00 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 192.168.33.1 at 2014-11-05 19:25:00 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 192.168.33.1 at 2014-11-05 19:25:00 +0000 Started GET "/assets/carnival/select2.css?body=1" for 192.168.33.1 at 2014-11-05 19:25:01 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.css?body=1" for 192.168.33.1 at 2014-11-05 19:25:01 +0000 Started GET "/assets/jquery.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:01 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:02 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:03 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:04 +0000 Started GET "/assets/carnival/external/jquery.datetimepicker.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:04 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:05 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:05 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 192.168.33.1 at 2014-11-05 19:25:06 +0000 Started GET "/assets/missing.png" for 192.168.33.1 at 2014-11-05 19:25:06 +0000 Started GET "/assets/carnival/sprites.png" for 192.168.33.1 at 2014-11-05 19:25:06 +0000 Started GET "/assets/fonts/opensans-regular-webfont.woff" for 192.168.33.1 at 2014-11-05 19:25:07 +0000 Started GET "/assets/carnival/header-bg.png" for 192.168.33.1 at 2014-11-05 19:25:07 +0000 Started GET "/assets/carnival/voltar.png" for 192.168.33.1 at 2014-11-05 19:25:07 +0000 Started GET "/assets/carnival/overlay.png" for 192.168.33.1 at 2014-11-05 19:25:08 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:25:08 +0000 Started GET "/assets/carnival/select2.png" for 192.168.33.1 at 2014-11-05 19:25:08 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 192.168.33.1 at 2014-11-05 19:25:09 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:25:10 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 192.168.33.1 at 2014-11-05 19:25:10 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 192.168.33.1 at 2014-11-05 19:25:11 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 192.168.33.1 at 2014-11-05 19:25:12 +0000